nixos-config/hosts/gc.nix

9 lines
123 B
Nix
Raw Normal View History

2024-02-10 23:46:24 +01:00
{ config, ... }:
{
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";
};
}