feat: more agressive recovery of storage
All checks were successful
Build_Deploy / build (push) Successful in 1m46s
Build_Deploy / linter (push) Successful in 3m48s
Build_Deploy / deploy_dns (push) Successful in 1m54s
Build_Deploy / deploy_active (active) (push) Successful in 3m11s
Build_Deploy / deploy_active (active-ext) (push) Successful in 1m33s
Build_Deploy / deploy_active (active-core) (push) Successful in 6m13s

This commit is contained in:
silver 2025-06-20 11:20:50 +01:00
parent fc1e1c5806
commit 1823ae396f
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

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