From bc80749e60505d83bb68e9a6c797bd02c6707c14 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 10 Mar 2022 11:45:31 -0500 Subject: [PATCH] Update cachix with new naming conventions --- modules/cachix.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/modules/cachix.nix b/modules/cachix.nix index 632f282..b3ddb25 100644 --- a/modules/cachix.nix +++ b/modules/cachix.nix @@ -3,11 +3,13 @@ { nix = { - binaryCaches = [ - "https://nix-community.cachix.org" - ]; - binaryCachePublicKeys = [ - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" - ]; + settings = { + substituters = [ + "https://nix-community.cachix.org" + ]; + trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; }; }