diff options
author | Frankie B <git@diskfloppy.me> | 2023-08-26 21:20:21 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-08-26 21:20:21 +0100 |
commit | 3d8fd14805cb00a94f93b220740a5c994292dfdb (patch) | |
tree | 8cca2beab020be20b8b020bb2b8905e83f4166e1 /hosts/nixbox | |
parent | c5afc1a07213059e7090da1a089d8c04385ffefc (diff) |
Enable auto gc
Diffstat (limited to 'hosts/nixbox')
-rw-r--r-- | hosts/nixbox/configuration.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/nixbox/configuration.nix b/hosts/nixbox/configuration.nix index 81213f9..f9de091 100644 --- a/hosts/nixbox/configuration.nix +++ b/hosts/nixbox/configuration.nix @@ -75,6 +75,13 @@ # Enable experimental features nix.settings.extra-experimental-features = ["flakes" "nix-command"]; + # Enable automatic gc + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 30d"; + }; + # I never want to touch this again security.rtkit.enable = true; services.pipewire = { |