system/nixos/shared/headless.nix

13 lines
209 B
Nix

{ inputs, ... }:
{
imports = [
"${inputs.nixpkgs}/nixos/modules/profiles/headless.nix"
];
environment.memoryAllocator.provider = "libc";
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
}