nixos-config/modules/system/auto-gc.nix
2025-03-18 23:36:49 +01:00

15 lines
334 B
Nix

{ config, lib, ... }:
{
options.myConfig.garbageCollection.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.garbageCollection.enable {
programs.nh = {
enable = true;
clean = {
enable = true;
dates = "daily";
extraArgs = "--keep 10 --keep-since 7d";
};
};
};
}