Add automatic nix-gc.

This commit is contained in:
Nolan Darilek 2025-04-17 08:25:10 -05:00
parent bef51cab59
commit 3cd0eeaaa9

View file

@ -20,4 +20,9 @@
environment.variables.EDITOR = "vim";
programs.appimage.binfmt = true;
nix.gc = {
automatic = true;
options = "--delete-older-than 30d";
};
}