summaryrefslogtreecommitdiffstats
path: root/nixos/modules/zram.nix
blob: 33c9e077791992ec8a346ad16990c2a95f60b710 (plain) (blame)
1
2
3
4
5
6
7
8
{
  zramSwap = {
    enable = true;
    algorithm = "lz4";
    memoryPercent = 100;
    priority = 999;
  };
}