18 lines
211 B
Nix
18 lines
211 B
Nix
{
|
|
modulesPath,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = [
|
|
(modulesPath + "/profiles/minimal.nix")
|
|
./network.nix
|
|
./sysext.nix
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
"quiet"
|
|
];
|
|
|
|
virtualisation.podman.enable = true;
|
|
}
|