(Snow)flakes for fluffy winters.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(base): setup nix GC (#29)

Sets up automatic Nix garbage collection

authored by

WalkQuackBack and committed by
GitHub
bb8d7531 c91fb7cf

+7
+7
modules/base.nix
··· 62 62 # Allow unfree packages 63 63 nixpkgs.config.allowUnfree = true; 64 64 65 + # Clean up old things 66 + nix.gc = { 67 + automatic = true; 68 + options = "--delete-older-than 7d"; 69 + dates = "weekly"; 70 + }; 71 + 65 72 # Enable flakes and nix command 66 73 nix.settings.experimental-features = [ 67 74 "nix-command"