nixos-config/hosts/phantom/hardware-config.nix
2025-03-12 11:39:23 -03:00

15 lines
143 B
Nix

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