add reflex cache

This commit is contained in:
Sridhar Ratnakumar 2022-01-29 12:55:42 -05:00
parent 915a3f80ee
commit 82d6d6de84
2 changed files with 9 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: {
imports = [
./iohk.nix
./reflex.nix
./platonic.nix
./cm-idris2-pkgs.nix
];

View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
nix.binaryCachePublicKeys = [
"ryantrinkle.com-1:JJiAKaRv9mWgpVAz8dwewnZe0AzzEAzPkagE9SP5NWI="
];
nix.binaryCaches = [
"https://nixcache.reflex-frp.org"
];
}