nixos-config/hosts/phantom/hardware-config.nix
2024-06-05 01:20:01 -03:00

15 lines
143 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
swapDevices = [
{
device = "/swap/swapfile";
size = (1024 * 2); # 2 GB
}
];
}