nixos-config/hosts/phantom/hardware-config.nix

15 lines
143 B
Nix
Raw Permalink Normal View History

{
config,
pkgs,
inputs,
...
}:
{
swapDevices = [
{
device = "/swap/swapfile";
size = (1024 * 2); # 2 GB
}
];
2024-03-28 21:56:52 -03:00
}