aboutsummaryrefslogtreecommitdiff
path: root/profiles/nix/gc.nix
blob: c39476c02c78942503acb12160549b0cd26a0f5b (plain) (blame)
1
2
3
4
5
6
7
8
{ ... }:
{
  nix.gc = {
    automatic = true;
    options = "--delete-older-than 14d";
  };
  nix.optimise.automatic = true;
}