Compare commits

..

2 Commits

Author SHA1 Message Date
Aleix Boné
b26aa2aa23
Use hut-substituter module in owl{1,2} and raccoon 2025-02-26 16:03:34 +01:00
Aleix Boné
6fac30abc4
Add module to use hut as a binary substituter 2025-02-26 16:03:26 +01:00

View File

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