system/nixos/shared/headless.nix

14 lines
266 B
Nix
Raw Normal View History

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