nix-system/os/swapfile.nix
ant 4d8c3fddd0
All checks were successful
/ build-all (push) Successful in 1m6s
add swapfile os module and enable swap for hs
2026-02-26 15:00:10 +01:00

9 lines
113 B
Nix

sizeGiB:
{
swapDevices = [
{
device = "/var/lib/swapfile";
size = sizeGiB * 1024;
}
];
}