fix: recovering space was too agressive
This commit is contained in:
parent
d7e1e44f1b
commit
017d383d08
1 changed files with 2 additions and 2 deletions
|
@ -58,9 +58,9 @@ in {
|
|||
# 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 = ''
|
||||
min-free = ${toString (1024 * 1024 * 1024 * 10)}
|
||||
min-free = ${toString (1024 * 1024 * 1024 * 1)}
|
||||
max-free = ${toString (1024 * 1024 * 1024 * 100)}
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue