fix: recovering space was too agressive

This commit is contained in:
silver 2025-06-24 00:37:08 +01:00
parent d7e1e44f1b
commit 017d383d08
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -58,9 +58,9 @@ in {
# options = "--delete-older-than 30d"; # options = "--delete-older-than 30d";
# }; # };
# to free up to 100GiB whenever there is less than 10GiB left # to free up to 100GiB whenever there is less than 1GiB left
extraOptions = '' extraOptions = ''
min-free = ${toString (1024 * 1024 * 1024 * 10)} min-free = ${toString (1024 * 1024 * 1024 * 1)}
max-free = ${toString (1024 * 1024 * 1024 * 100)} max-free = ${toString (1024 * 1024 * 1024 * 100)}
''; '';
}; };