summaryrefslogtreecommitdiff
path: root/config/store.nix
blob: 79c4f91a8d3c5d18643b808ca884adac2cab4b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ ... }:

{
  nix = {
    autoOptimiseStore = true;
    gc = {
      automatic = true;
      dates = "daily";
      options = "--delete-old";
    };
    settings.max-jobs = lib.mkDefault 1;
  };
  system.autoUpgrade.enable = true;
}