This commit is contained in:
Lukas Wurzinger 2024-08-18 21:56:05 +02:00
parent 45fea7a83a
commit e3b84b9c65
2 changed files with 8 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./direnv.nix
./fs.nix
./fwupd.nix
./gc.nix
./git.nix
./nix.nix
./readline.nix

7
common/gc.nix Normal file
View file

@ -0,0 +1,7 @@
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}