switched nix gc from daily to weekly to avoid conflict with nixos upgrade

This commit is contained in:
Aly Raffauf 2024-03-04 10:53:14 -05:00
parent 9744ecc210
commit ed7850fe3c

View file

@ -39,7 +39,7 @@
# Delete generations older than 7 days. # Delete generations older than 7 days.
nix.gc = { nix.gc = {
automatic = true; automatic = true;
dates = "daily"; dates = "weekly";
options = "--delete-older-than 7d"; options = "--delete-older-than 7d";
}; };