weekly automatic gc of nix store

This commit is contained in:
2024-02-02 06:26:07 +00:00
parent 54fa27418e
commit 481fe107a5

View File

@@ -1,3 +1,8 @@
{ {
nix.settings.trusted-users = [ "root" "@wheel" ]; nix.settings.trusted-users = [ "root" "@wheel" ];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
} }