nixos-config/modules/nixos/system/swap.nix

8 lines
No EOL
98 B
Nix
Executable file

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