16 lines
297 B
Nix
16 lines
297 B
Nix
{
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../configuration.nix
|
|
|
|
# Auto generated, do not edit. Replace per host
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
|
|
"${modulesPath}/profiles/hardened.nix"
|
|
{environment.memoryAllocator.provider = lib.mkForce "libc";}
|
|
];
|
|
}
|