common.nix: use the new names of binary cache related settings

This commit is contained in:
kekrby 2022-10-04 20:30:05 +03:00
parent 22d82bda10
commit e1e071adae

View file

@ -1,11 +1,11 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
nix = { nix.settings = {
binaryCaches = [ trusted-substituters = [
"https://t2linux.cachix.org" "https://t2linux.cachix.org"
]; ];
binaryCachePublicKeys = [ trusted-public-keys = [
"t2linux.cachix.org-1:P733c5Gt1qTcxsm+Bae0renWnT8OLs0u9+yfaK2Bejw=" "t2linux.cachix.org-1:P733c5Gt1qTcxsm+Bae0renWnT8OLs0u9+yfaK2Bejw="
]; ];
}; };