From 8647153fc0bf78dd50ea09dfe0086f21eb38be78 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Mon, 28 Jul 2025 14:08:04 -0700 Subject: [PATCH] flake: add nix-community cachix as substituters --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 84163b959..b6dfe0126 100644 --- a/flake.nix +++ b/flake.nix @@ -91,6 +91,13 @@ # keep-sorted end }; + nixConfig = { + extra-substituters = [ "https://nix-community.cachix.org" ]; + extra-trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; + outputs = { flake-parts, systems, ... }@inputs: flake-parts.lib.mkFlake { inherit inputs; } {