From 36b1698953e78b7e258472ac5ff08cb4c7d9b1fd Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Sat, 14 Sep 2024 16:04:50 +0530 Subject: [PATCH] all: add personal cachix as trusted substituter --- common/nix.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/nix.nix b/common/nix.nix index 8836bba..f4fb4b9 100644 --- a/common/nix.nix +++ b/common/nix.nix @@ -9,10 +9,12 @@ _: { auto-allocate-uids = true; sandbox = true; trusted-substituters = [ + "https://adtya.cachix.org" "https://nix-community.cachix.org" "https://cache.nixos.org" ]; trusted-public-keys = [ + "adtya.cachix.org-1:lAuNLx0Ehzx6FoH20rVkMD7KyZZevlLfvm3lwMAzrnU=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];