nix-flake/modules/system/core/swapfile.nix
2026-03-03 15:25:13 +07:00

6 lines
No EOL
124 B
Nix

{ swapfile, ... }: {
swapDevices = if swapfile == 0 then [] else [{
device = "/swapfile";
size = swapfile;
}];
}