From f3c74bb477eff3e3036d88de248fce4c6149cc4b Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Thu, 20 Nov 2025 23:10:27 +0100 Subject: [PATCH] Refactor min/max-free to use byte values --- hosts/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/common.nix b/hosts/common.nix index 194b397..64c0b7c 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -36,8 +36,8 @@ commit-lock-file-summary = "flake.lock: Update"; allow-import-from-derivation = false; - min-free = "1G"; - max-free = "5G"; + min-free = 1 * 1024 * 1024 * 1024; + max-free = 5 * 1024 * 1024 * 1024; }; };