9 lines
178 B
Nix
9 lines
178 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
zramSwap.enable = true;
|
|
zramSwap.memoryPercent = 100;
|
|
zramSwap.memoryMax = 16 * 1024 * 1024 * 1024;
|
|
boot.kernel.sysctl."vm.swappiness" = 100;
|
|
}
|