From e1e071adae4c8f6d7f4b61266c47bcb3029e3d69 Mon Sep 17 00:00:00 2001 From: kekrby Date: Tue, 4 Oct 2022 20:30:05 +0300 Subject: [PATCH] common.nix: use the new names of binary cache related settings --- nix/common.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/common.nix b/nix/common.nix index e2d6202..6f83b6a 100644 --- a/nix/common.nix +++ b/nix/common.nix @@ -1,11 +1,11 @@ { pkgs, ... }: { - nix = { - binaryCaches = [ + nix.settings = { + trusted-substituters = [ "https://t2linux.cachix.org" ]; - binaryCachePublicKeys = [ + trusted-public-keys = [ "t2linux.cachix.org-1:P733c5Gt1qTcxsm+Bae0renWnT8OLs0u9+yfaK2Bejw=" ]; };