nixos-config/system/zram.nix

14 lines
189 B
Nix
Raw Normal View History

2024-05-26 16:45:38 +02:00
{
config,
pkgs,
lib,
...
}:
2023-04-11 17:00:07 +02:00
2024-05-26 16:45:38 +02:00
with lib;
{
zramSwap.enable = mkDefault true;
zramSwap.memoryPercent = mkDefault 100;
zramSwap.memoryMax = mkDefault (16 * 1024 * 1024 * 1024);
2023-04-11 17:00:07 +02:00
}