summaryrefslogtreecommitdiff
path: root/features/system/global/nix.nix
blob: a0ece02a3ee2fa6cb357cef601b89485c9d2596e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ ... }: {
  nix = {
    settings = {
      experimental-features = [ "nix-command" "flakes" ];
      auto-optimise-store = true;
    };
    gc = {
      automatic = true;
      dates = "daily";
      options = "-d 5";
    };
  };
}