@jaspermayone.com's dotfiles

Disable nix.gc.automatic to avoid conflict with nh.clean

+6 -6
+6 -6
hosts/alastor/configuration.nix
··· 28 28 # Prevent /boot partition from filling up 29 29 boot.loader.grub.configurationLimit = 10; 30 30 31 - # Automatic garbage collection to remove old generations 32 - nix.gc = { 33 - automatic = true; 34 - dates = "weekly"; 35 - options = "--delete-older-than 7d"; 36 - }; 31 + # Automatic garbage collection disabled - using nh.clean instead 32 + # nix.gc = { 33 + # automatic = true; 34 + # dates = "weekly"; 35 + # options = "--delete-older-than 7d"; 36 + # }; 37 37 38 38 # Clean /tmp on boot 39 39 boot.tmp.cleanOnBoot = true;