all repos — nixfiles @ 0741f0290ee5e7082ff421921583ff9ad8ec6f1e

System and user configuration, managed by nix and home-manager

system/settings/configuration/nix.nix (view raw)

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
45
46
47
{
  inputs,
  pkgs,
  lib,
  ...
}:
{
  nix = {
    package = pkgs.lix;
    settings = {
      cores = lib.mkDefault 0;
      use-xdg-base-directories = true;
      keep-outputs = true;
      keep-derivations = true;
      warn-dirty = false;
      substituters = [
        "https://nix-community.cachix.org"
        "https://binarycache.alin.ovh"
        "https://cache.lix.systems"
      ];

      trusted-public-keys = [
        "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
        "binarycache.alin.ovh:ZwqO3XMuajPictjwih8OY2+RXnOKpjZEZFHJjGSxAI4="
        "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
      ];
    };

    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;
          };
        };
  };
}