summary refs log tree commit diff stats
path: root/system/settings/configuration/nix.nix
blob: b0459b16367379d2761f427875304047da867ab0 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ inputs
, pkgs
, lib
, ...
}: {
  nix = {
    settings = {
      cores = lib.mkDefault 0;
      use-xdg-base-directories = true;
      keep-outputs = true;
      keep-derivations = true;
      experimental-features = "nix-command flakes";
      warn-dirty = false;
      substituters = [
        "https://nix-community.cachix.org"
        "https://binarycache.alanpearce.eu"
        "https://deploy-rs.cachix.org"
      ];

      trusted-public-keys = [
        "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
        "deploy-rs.cachix.org-1:xfNobmiwF/vzvK1gpfediPwpdIP0rpDV2rYqx40zdSI="
        "binarycache.alanpearce.eu:ZwqO3XMuajPictjwih8OY2+RXnOKpjZEZFHJjGSxAI4="
      ];
    };

    gc = {
      automatic = lib.mkDefault true;
      options = lib.mkDefault "--delete-older-than 14d";
    };

    registry =
      if pkgs.stdenv.isDarwin
      then {
        nixpkgs.flake = inputs.nixpkgs;
      } else {
        nixpkgs.to = {
          type = "path";
          path = pkgs.path;
        };

      };
  };
}