diff options
author | lassulus <lass@aidsballs.de> | 2016-07-14 22:59:13 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-07-14 22:59:13 +0200 |
commit | e2e532c88017f3e8a49a1dfeeef56b932465be31 (patch) | |
tree | 1bd4d3b83f81c8e74afc10e1e149a961bfd0484d /makefu/2configs/binary-cache | |
parent | 38a50ffaeb10812eaa9530d8df0381f2d13e360c (diff) | |
parent | 14242c68f234f6de0bed015817ac206f99dc4f20 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/binary-cache')
-rw-r--r-- | makefu/2configs/binary-cache/lass.nix | 12 | ||||
-rw-r--r-- | makefu/2configs/binary-cache/nixos.nix | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/makefu/2configs/binary-cache/lass.nix b/makefu/2configs/binary-cache/lass.nix new file mode 100644 index 000000000..4813eeb0f --- /dev/null +++ b/makefu/2configs/binary-cache/lass.nix @@ -0,0 +1,12 @@ +{ config, ... }: + +{ + nix = { + binaryCaches = [ + "http://cache.prism.r" + ]; + binaryCachePublicKeys = [ + "cache.prism-1:+S+6Lo/n27XEtvdlQKuJIcb1yO5NUqUCE2lolmTgNJU=" + ]; + }; +} diff --git a/makefu/2configs/binary-cache/nixos.nix b/makefu/2configs/binary-cache/nixos.nix new file mode 100644 index 000000000..2ff5e1307 --- /dev/null +++ b/makefu/2configs/binary-cache/nixos.nix @@ -0,0 +1,12 @@ +{ config, ... }: + +{ + nix = { + binaryCaches = [ + "https://cache.nixos.org/" + ]; + binaryCachePublicKeys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + ]; + }; +} |