Compare commits

..

2 Commits

Author SHA1 Message Date
Aleix Boné
982fc647cf
Use hut-substituter module in owl{1,2} and raccoon 2025-02-26 16:47:57 +01:00
Aleix Boné
89fc9fb163
Add module to use hut as a binary substituter 2025-02-26 16:47:57 +01:00

View File

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