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

{
  nix.settings = {
    substituters = [
      "https://cache.kusanari.network/hydra"
    ];
    trusted-public-keys = [
      "hydra:aQij+np/Omz8vILwpvgz+gajP9KSjKe5kRNWwthI5gI="
    ];
  };
}