nixos-config/system/zram.nix

9 lines
178 B
Nix
Raw Normal View History

2023-04-11 17:00:07 +02:00
{ config, pkgs, ... }:
{
zramSwap.enable = true;
zramSwap.memoryPercent = 100;
zramSwap.memoryMax = 16 * 1024 * 1024 * 1024;
boot.kernel.sysctl."vm.swappiness" = 100;
}