From bb82e171f821aaa31cf2450b05820f346a0712e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Tue, 25 Jan 2022 17:30:21 +0100 Subject: [PATCH] flake: add nixos-search.cachix.org to substituters (#422) --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index 0bf3505..a91a2f0 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,11 @@ { description = "Code behind search.nixos.org"; + nixConfig = { + extra-substituters = [ "https://nixos-search.cachix.org" ]; + extra-trusted-public-keys = [ "nixos-search.cachix.org-1:1HV3YF8az4fywnH+pAd+CXFEdpTXtv9WpoivPi+H70o=" ]; + }; + inputs = { nixpkgs = { url = "nixpkgs/nixos-unstable"; }; };