From 844294a58ef0badb3067c4f2fe063030537eb624 Mon Sep 17 00:00:00 2001 From: 0xda157 Date: Mon, 22 Dec 2025 13:49:46 -0800 Subject: [PATCH] flake: add nix-community cachix as substituters (#1796) Link: https://github.com/nix-community/stylix/pull/1796 Reviewed-by: Matt Sturgeon Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 34123959..71522852 100644 --- a/flake.nix +++ b/flake.nix @@ -96,6 +96,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; } {