11 lines
203 B
Nix
11 lines
203 B
Nix
{
|
|
swapDevices = [ { device = "/dev/disk/by-uuid/bf928178-4e92-4e7e-8df2-18fbd658eecf"; } ];
|
|
|
|
zramSwap = {
|
|
enable = true;
|
|
memoryPercent = 20;
|
|
};
|
|
|
|
boot.kernel.sysctl."vm.swappiness" = 9;
|
|
}
|