From 026e3a7eaa480dab878b0536eb4fa69cbe932e9e Mon Sep 17 00:00:00 2001 From: Eric Drechsel Date: Thu, 23 Mar 2023 21:59:28 -0700 Subject: [PATCH] flake: add cache config --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index 92b2ac39..12851f2e 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,9 @@ { + nixConfig = { + extra-substituters = [ "https://nix-script.cachix.org" ]; + extra-trusted-public-keys = [ "nix-script.cachix.org-1:czo3tF6XERpkDdMd6m84XjmgeHQXNeIooSt7b0560+c=" ]; + }; + inputs = { flake-utils.url = "github:numtide/flake-utils"; naersk.url = "github:nix-community/naersk";