flake/system/default.nix

11 lines
243 B
Nix

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