2022-09-04 01:59:56 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib; {
|
|
|
|
|
|
|
|
config = {
|
|
|
|
nix = mkIf config.nathan.config.nix.autoGC {
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 7d";
|
2022-07-18 00:10:09 -04:00
|
|
|
};
|
2022-09-04 01:59:56 -04:00
|
|
|
};
|
|
|
|
};
|
2022-06-23 02:57:41 -04:00
|
|
|
}
|