aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/core/nix.nix
blob: 99aff5623123bbaecf479468048aded5f4aef992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ inputs, lib, ... }: {

  nix = {
    settings = {
      auto-optimise-store = lib.mkDefault true;
      build-dir = "/var/tmp";
      experimental-features = [ "nix-command" "flakes" ];
      #flake-registry = ""; # Disable global flake registry   This is a hold-over setting from Misterio77. Not sure significance but likely to do with nix.registry entry below.
      trusted-users = [ "root" "@wheel" ];
      warn-dirty = false;
    };

    # Add each flake input as a registry to make nix3 commands consistent with your flake
    #registry = lib.mapAttrs (_: value: { flake = value; }) inputs;

    # Add nixpkgs input to NIX_PATH
    # This lets nix2 commands still use <nixpkgs>
    #nixPath = [ "nixpkgs=${inputs.nixpkgs.outPath}" ];

    # Garbage Collection
    gc = {
      automatic = true;
      dates = "weekly";
      randomizedDelaySec = "14m";
      # Keep the last 2 generations
      options = "--delete-older-than 28d";
    };

  };
}