From e0e888bc368aa2e6f9e1591c93568dc978fc0339 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Wed, 15 Oct 2025 11:58:07 -0400 Subject: [PATCH] add nix-community as a trusted cache --- hosts/common/core/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index f118186..8d5fa96 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -73,5 +73,13 @@ in { auto-optimise-store = true; trusted-users = ["@wheel"]; + substituters = [ + "https://cache.nixos.org/" + "https://nix-community.cachix.org" + ]; + trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; }; }