nixos server configurations
1{ 2 nix.gc = { 3 automatic = true; 4 dates = "weekly"; 5 options = "--delete-older-than 30d -d"; 6 }; 7 nix.extraOptions = '' 8 min-free = ${toString (100 * 1024 * 1024)} 9 max-free = ${toString (1024 * 1024 * 1024)} 10 ''; 11 nix.optimise.automatic = true; 12 nix.optimise.dates = [ "06:00" ]; 13}