tomato/modules/gc/default.nix

16 lines
359 B
Nix
Raw Normal View History

2021-04-27 18:47:09 -04:00
{
nix = {
autoOptimiseStore = true;
gc = {
2021-08-23 06:50:52 -04:00
BIGERROR = "hope this fails how i want it to";
2021-04-27 18:47:09 -04:00
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
extraOptions = ''
min-free = ${toString (100*1024*1024)} # 100mb
max-free = ${toString (1024*1024*1024)} # free to 1gb free
'';
};
}