From b37559ff70142f128dc4ca2e39ba03be26927d88 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Fri, 29 Oct 2021 20:26:43 +0200 Subject: [PATCH] feat(nix): add shajra cache for hls with ghc 8.6.5 support --- system/nix.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/system/nix.nix b/system/nix.nix index d156db7..ac8d6e4 100644 --- a/system/nix.nix +++ b/system/nix.nix @@ -8,10 +8,14 @@ options = "--delete-older-than 30d"; }; - nix.binaryCaches = - [ "https://hydra.iohk.io" "https://nixcache.reflex-frp.org" ]; + nix.binaryCaches = [ + "https://hydra.iohk.io" + "https://nixcache.reflex-frp.org" + "https://shajra.cachix.org" + ]; nix.binaryCachePublicKeys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" "ryantrinkle.com-1:JJiAKaRv9mWgpVAz8dwewnZe0AzzEAzPkagE9SP5NWI=" + "shajra.cachix.org-1:V0x7Wjgd/mHGk2KQwzXv8iydfIgLupbnZKLSQt5hh9o=" ]; }