12 lines
158 B
Nix
12 lines
158 B
Nix
|
_:
|
||
|
{
|
||
|
# do not swap that often
|
||
|
boot.kernel.sysctl = {
|
||
|
"vm.swappiness" = 25;
|
||
|
};
|
||
|
|
||
|
swapDevices = [
|
||
|
{ device = "/dev/disk/by-label/swap"; }
|
||
|
];
|
||
|
}
|