system/nixos/shared/headless.nix

14 lines
266 B
Nix

{ inputs, ... }:
{
imports = [
"${inputs.nixpkgs}/nixos/modules/profiles/headless.nix"
];
# Disabled by hardened profile, big performance hit.
security.allowSimultaneousMultithreading = true;
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
}