14 lines
243 B
Nix
14 lines
243 B
Nix
{
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
|
|
"${modulesPath}/profiles/hardened.nix"
|
|
{environment.memoryAllocator.provider = lib.mkForce "libc";}
|
|
];
|
|
}
|