12 lines
236 B
Nix
12 lines
236 B
Nix
{ services, ... }:
|
|
Profile "Common."
|
|
{
|
|
configuration
|
|
= [
|
|
./boot.nix
|
|
./environment.nix
|
|
./system.nix
|
|
];
|
|
services = with services; [ gnupg openssh ];
|
|
}
|