11 lines
166 B
Nix
11 lines
166 B
Nix
{ config, inputs, ... }:
|
|
{
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
|
|
nix.optimise.automatic = true;
|
|
}
|