nixos-config/system/zram.nix

9 lines
235 B
Nix
Raw Normal View History

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