about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-05-10 21:15:25 +0900
committersefidel <contact@sefidel.net>2024-05-10 22:26:05 +0900
commitc86a9f9cddfc95bdfab097b22a106902065d4da6 (patch)
treef86ae6e3b267b88789cfa34dd490cb08d4a16166
parentb62ac33a550624a9fb78ddcc36ed34ae2ba7172f (diff)
downloadnixrc-c86a9f9cddfc95bdfab097b22a106902065d4da6.tar.gz
nixrc-c86a9f9cddfc95bdfab097b22a106902065d4da6.zip
fix(modules/binary-cache)!: remove kusanari cache until 'NAR corrupt' issue is resolved
-rw-r--r--modules/binary-cache/caches/kusanari-hydra.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/binary-cache/caches/kusanari-hydra.nix b/modules/binary-cache/caches/kusanari-hydra.nix
deleted file mode 100644
index a1f4099..0000000
--- a/modules/binary-cache/caches/kusanari-hydra.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-  nix.settings = {
-    substituters = [
-      "https://cache.kusanari.network/hydra"
-    ];
-    trusted-public-keys = [
-      "hydra:aQij+np/Omz8vILwpvgz+gajP9KSjKe5kRNWwthI5gI="
-    ];
-  };
-
-  environment.systemPackages = [ pkgs.attic ];
-}