From 81d26f6a935b686ce43b40305094152ebc1c9104 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Tue, 3 Dec 2024 09:29:37 -0500 Subject: [PATCH] hw/common: reduce zram memoryPercent to 25 --- hwModules/common/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwModules/common/default.nix b/hwModules/common/default.nix index a3df8052..608f32e0 100644 --- a/hwModules/common/default.nix +++ b/hwModules/common/default.nix @@ -21,6 +21,6 @@ zramSwap = { enable = lib.mkDefault true; - memoryPercent = lib.mkDefault 50; + memoryPercent = lib.mkDefault 25; }; }