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