Replace deprecated NixOS binary cache settings (#1410)

`nix.binaryCachePublicKeys` and `nix.binaryCaches` are now deprecated in NixOS: the current names for these settings are `nix.settings.trusted-public-keys` and `nix.settings.substituters`, respectively
This commit is contained in:
Ian 2022-03-21 12:27:36 -04:00 committed by GitHub
parent 3600267d49
commit 9fae2eb97f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,10 +25,10 @@ If you're running NixOS, you need to add/update the following in your `/etc/nixo
```
# Binary Cache for Haskell.nix
nix.binaryCachePublicKeys = [
nix.settings.trusted-public-keys = [
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
];
nix.binaryCaches = [
nix.settings.substituters = [
"https://hydra.iohk.io"
];
```