WIP: Use hut as binary cache #89

Draft
abonerib wants to merge 4 commits from abonerib/jungle:77-hut-cache into master
Showing only changes of commit 89fc9fb163 - Show all commits

View File

@ -0,0 +1,10 @@
{ config, ... }:
{
nix.settings =
# Don't add hut as a cache to itself
assert config.networking.hostName != "hut";
{
substituters = [ "https://jungle.bsc.es/cache" ];
trusted-public-keys = [ "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" ];
};
}