mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
17 lines
348 B
Nix
17 lines
348 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.myConfig.auto-gc.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.auto-gc.enable {
|
|
myConfig.nix-helper.enable = true;
|
|
|
|
nh.clean = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
extraArgs = "--keep-since 7d --keep 10";
|
|
};
|
|
};
|
|
}
|