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