Cleanup Automation #8

Merged
wesley merged 1 commits from auto-cleanup into master 2023-06-30 12:52:15 -04:00
Showing only changes of commit 9b1e7d405a - Show all commits

View File

@@ -104,6 +104,17 @@
''; '';
}; };
# Enable automatic optimization of the nix store
nix.settings.auto-optimise-store = true;
# Enable automatic garbage collection on anything
# stale and older than 2 weeks
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
# Setup our ZSH shell. # Setup our ZSH shell.
# First let's absolutely make sure the shell is enabled # First let's absolutely make sure the shell is enabled
programs.zsh.enable = true; programs.zsh.enable = true;