diff --git a/m/module/hut-substituter.nix b/m/module/hut-substituter.nix new file mode 100644 index 0000000..be73a59 --- /dev/null +++ b/m/module/hut-substituter.nix @@ -0,0 +1,9 @@ +{ 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=" ]; + }; +}