From c739b83a8662881e49ded6acb8e045f5015cf2fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Tue, 28 Jun 2022 02:23:51 +0200 Subject: [PATCH] feat(nix): add own cachix cache --- system/nix.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/system/nix.nix b/system/nix.nix index 9e5135a..197ccac 100644 --- a/system/nix.nix +++ b/system/nix.nix @@ -12,10 +12,15 @@ in { nix.settings = { auto-optimise-store = true; - substituters = [ "https://hydra.iohk.io" "https://shajra.cachix.org" ]; + substituters = [ + "https://hydra.iohk.io" + "https://shajra.cachix.org" + "https://felschr.cachix.org" + ]; trusted-public-keys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" "shajra.cachix.org-1:V0x7Wjgd/mHGk2KQwzXv8iydfIgLupbnZKLSQt5hh9o=" + "felschr.cachix.org-1:raomy5XA2tsVkBoG6wo70ARIn+V24IXhWaSe3QZo12A=" ]; };