nixos-config/modules/nixos/hardware/swap.nix
2024-07-06 16:56:19 +09:00

8 lines
110 B
Nix

{ pkgs, ... }:
{
swapDevices = [{
device = "/var/lib/swapfile";
size = 20*1024;
}];
}