13 lines
192 B
Nix
13 lines
192 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nix = {
|
|
settings.auto-optimise-store = true;
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
};
|
|
}
|