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

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

  environment.systemPackages = [ pkgs.attic ];
}