about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-02-11 04:03:31 +0900
committersefidel <contact@sefidel.net>2024-02-11 04:03:31 +0900
commitfe718869eb5006c99b6515c733c34293e2b0f5dc (patch)
treead95f465b67a6478b467fa994179b3006e46f876 /modules
parent0fa31a0aaaee89fb68338f4b7869b5eff3557e14 (diff)
downloadinfra-fe718869eb5006c99b6515c733c34293e2b0f5dc.tar.gz
infra-fe718869eb5006c99b6515c733c34293e2b0f5dc.zip
feat(modules/binary-cache): add kusanari-hydra
Diffstat (limited to 'modules')
-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="
+    ];
+  };
+}