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