From 6505df5d8a3b5dd081b63797c0317e9921c03633 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 2 Jun 2024 10:52:10 +0200 Subject: [PATCH] feat(nix): Trust devenv cachix cache --- modules/nix-config.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/nix-config.nix b/modules/nix-config.nix index 13ffe16..80b1825 100644 --- a/modules/nix-config.nix +++ b/modules/nix-config.nix @@ -25,6 +25,13 @@ # avoid unwanted garbage collection when using direnv keep-outputs = true; keep-derivations = true; + + trusted-substituters = [ "https://devenv.cachix.org" ]; + trusted-public-keys = [ "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=" ]; + trusted-users = [ + "root" + "alex" + ]; }; }; }