2024-03-29 17:14:53 +03:00
|
|
|
{ inputs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
"${inputs.nixpkgs}/nixos/modules/profiles/headless.nix"
|
|
|
|
];
|
|
|
|
|
2024-03-29 17:34:11 +03:00
|
|
|
# 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;
|
|
|
|
}
|