mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 19:40:32 +01:00
9 lines
124 B
Nix
9 lines
124 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
nix.gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 10d";
|
||
|
};
|
||
|
}
|