nixos-config/common/swap.nix
2025-07-25 10:55:20 -04:00

8 lines
No EOL
98 B
Nix
Executable file

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