diff --git a/content/hut/_index.md b/content/hut/_index.md index 9f32dc8..9ef8427 100644 --- a/content/hut/_index.md +++ b/content/hut/_index.md @@ -38,8 +38,8 @@ enable it for all builds in the system. ```nix { ... }: { nix.settings = { - substituters = [ "https://jungle.bsc.es/cache" ]; - trusted-public-keys = [ "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" ]; + extra-substituters = [ "https://jungle.bsc.es/cache" ]; + extra-trusted-public-keys = [ "jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" ]; }; } ``` @@ -60,8 +60,8 @@ Note: you'll have to be a trusted user. If using nix outside of NixOS, you'll have to update `/etc/nix/nix.conf` ``` -# echo "substituters = https://jungle.bsc.es/cache" >> /etc/nix/nix.conf -# echo "trusted-public-keys = jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" >> /etc/nix/nix.conf +# echo "extra-substituters = https://jungle.bsc.es/cache" >> /etc/nix/nix.conf +# echo "extra-trusted-public-keys = jungle.bsc.es:pEc7MlAT0HEwLQYPtpkPLwRsGf80ZI26aj29zMw/HH0=" >> /etc/nix/nix.conf ``` ### Hint in flakes