aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/binary-cache/caches/kusanari-hydra.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/binary-cache/caches/kusanari-hydra.nix b/modules/binary-cache/caches/kusanari-hydra.nix
new file mode 100644
index 0000000..2c2da8f
--- /dev/null
+++ b/modules/binary-cache/caches/kusanari-hydra.nix
@@ -0,0 +1,12 @@
+{ config, lib, ... }:
+
+{
+ nix.settings = {
+ substituters = [
+ "https://cache.kusanari.network/hydra"
+ ];
+ trusted-public-keys = [
+ "hydra:aQij+np/Omz8vILwpvgz+gajP9KSjKe5kRNWwthI5gI="
+ ];
+ };
+}