From bcfef991f8aba211ca81a6413be2f46695c28de1 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 30 May 2024 14:56:05 +0200 Subject: [PATCH] flake: add the nix-community binary cache --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 99d5924e..10431a97 100644 --- a/flake.nix +++ b/flake.nix @@ -36,6 +36,13 @@ }; }; + nixConfig = { + extra-substituters = [ "https://nix-community.cachix.org" ]; + extra-trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; + outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {