From the nix manual: > A configuration setting usually overrides any previous value. However, > for settings that take a list of items, you can prefix the name of the > setting by extra- to append to the previous value. Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
11 lines
291 B
Nix
11 lines
291 B
Nix
{ config, ... }:
|
|
{
|
|
nix.settings =
|
|
# Don't add hut as a cache to itself
|
|
assert config.networking.hostName != "hut";
|
|
{
|
|
extra-substituters = [ "http://hut/cache" ];
|
|
extra-trusted-public-keys = [ "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" ];
|
|
};
|
|
}
|