summaryrefslogtreecommitdiff
path: root/modules/nix.nix
blob: c6b227aa00ee5c84de0f969c7cfaeb680da28c51 (plain) (blame)
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
{ config, ... }: {
  nix = {
    settings = {
      auto-optimise-store = true;
      http-connections = 0;
      warn-dirty = false;
      log-lines = 50;
      # sandbox = "relaxed";
      extra-sandbox-paths = [ config.programs.ccache.cacheDir ];

      trusted-users = [
        "@wheel"
      ];

      allowed-users = [
        "root"
        "@wheel"
      ];

      substituters = [
        "https://cache.nixos.org/"
        "https://nix-community.cachix.org"
        "https://hyprland.cachix.org"
        "https://nyx.chaotic.cx/"
        "https://nixpkgs-wayland.cachix.org/"
      ];

      trusted-public-keys = [
        "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
        "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
        "nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8="
        "nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
      ];

      experimental-features = [
        "nix-command"
        "flakes"
      ];
    };

    gc = {
      automatic = true;
      dates = "daily";
      options = "--delete-older-than 3d";
    };
  };
}