From 6615366df7340d293a3efc23119ba89d5b3af00c Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Thu, 7 Nov 2024 10:00:26 +0100 Subject: [PATCH] nix: add cachix --- common/nix.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/nix.nix b/common/nix.nix index f5b4c2f..1d2bde9 100644 --- a/common/nix.nix +++ b/common/nix.nix @@ -24,6 +24,12 @@ "https://cache.nixos.org/" ]; trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ]; + extra-substituters = [ + "https://nix-community.cachix.org" + ]; + extra-trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; }; channel.enable = false; registry = lib.mapAttrs (_: flake: { inherit flake; }) flakeInputs;