zram: Increase memory percent to 100%

See https://github.com/NixOS/nixpkgs/issues/103106
This commit is contained in:
Donovan Glover 2024-03-05 19:10:18 -05:00
parent d5c7fe6083
commit 1d448a5289
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,3 +1,6 @@
{
zramSwap.enable = true;
zramSwap = {
enable = true;
memoryPercent = 100;
};
}