From 8936f4415ed4a6b46a1569da4f966e629cee1dc7 Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Mon, 25 Mar 2024 13:12:35 +0200 Subject: [PATCH] nix: trust https://sourcegraph-noah.cachix.org --- lib/cachix/sourcegraph-noah.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/cachix/sourcegraph-noah.nix diff --git a/lib/cachix/sourcegraph-noah.nix b/lib/cachix/sourcegraph-noah.nix new file mode 100644 index 0000000..1c8d9c5 --- /dev/null +++ b/lib/cachix/sourcegraph-noah.nix @@ -0,0 +1,7 @@ +# This doesn't configure us to use the Sourcegraph cache, but rather makes it +# possible to trust it for the sourcegraph repo's flake.nix +{ + nix.settings = { + trusted-substituters = [ "https://sourcegraph-noah.cachix.org" ]; + }; +}