This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-07-02 19:04:48 +02:00
parent 7356853a1d
commit 295277ad00
2 changed files with 12 additions and 0 deletions

11
system-modules/gc.nix Normal file
View File

@@ -0,0 +1,11 @@
{ ... }:
{
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
settings.auto-optimise-store = true;
};
}