nixos-config/hosts/gc.nix

8 lines
121 B
Nix
Raw Normal View History

{config, ...}: {
2024-02-10 23:46:24 +01:00
nix.gc = {
automatic = true;
2024-02-13 22:04:37 +01:00
dates = "daily";
2024-02-10 23:46:24 +01:00
options = "--delete-older-than 10d";
};
}