mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
11 lines
193 B
Nix
11 lines
193 B
Nix
{
|
|
swapDevices = [{
|
|
device = "/var/lib/swapfile";
|
|
size = 24 * 1024; # 24 GB Swap
|
|
}];
|
|
zramSwap = {
|
|
enable = true;
|
|
memoryMax = 16 * 1024 * 1024 * 1024; # 16 GB ZRAM
|
|
};
|
|
}
|