add space optimizations for servers

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-02-27 03:00:32 -05:00 committed by Alice Huston
parent ff3704a945
commit c35ee793a1

View File

@ -187,9 +187,10 @@
connect-timeout = 20; connect-timeout = 20;
}; };
# free up to 10 gb when only 1 gb left
extraOptions = '' extraOptions = ''
min-free = ${toString (100 * 1024 * 1024)} min-free = ${toString (1 * 1024 * 1024 * 1024)}
max-free = ${toString (1024 * 1024 * 1024)} max-free = ${toString (10 * 1024 * 1024 * 1024)}
''; '';
gc = { gc = {