about summary refs log tree commit diff
path: root/modules/binary-cache/caches/nixrc.nix
blob: 6444ae5ff28f206592edefb690cf31f0d1af487b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, ... }:

{
  nix.settings = {
    substituters = [
      "https://nixrc.cachix.org"
    ];
    trusted-public-keys = [
      "nixrc.cachix.org-1:Hza//IlTj9UID+DaCXaM/cftfZzcXZ4zeW9XHLIcztU="
    ];
  };
}