flake/system/default.nix
2025-11-08 20:00:23 +00:00

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";}
];
}