13 lines
266 B
Nix
13 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;
|
|
}
|