nixos-config/common/swap.nix
2025-07-20 13:02:43 -04:00

8 lines
No EOL
98 B
Nix

{ config, ... }:
{
swapDevices = [ {
device = "/var/swapfile";
size = 16*1024;
} ];
}