mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
15 lines
300 B
Nix
15 lines
300 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.myConfig.auto-gc.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.auto-gc.enable {
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
};
|
|
}
|