patos/modules/profiles/server.nix

20 lines
212 B
Nix
Raw Normal View History

{
modulesPath,
...
}:
{
imports = [
(modulesPath + "/profiles/minimal.nix")
./network.nix
2024-11-15 21:09:57 +01:00
./sysext.nix
];
2024-11-16 17:15:56 +01:00
boot.kernelParams = [
"quiet"
];
2024-11-16 17:15:56 +01:00
virtualisation.podman.enable = true;
}