From 3a42bc96e8a7270b67143d57bf943a52c0e6af8e Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Wed, 28 Aug 2024 11:57:48 +0200 Subject: [PATCH] build: add nix caches --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index 01e9e56..356d8de 100755 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,17 @@ { description = "Add laziness to your favourite plugin manager!"; + nixConfig = { + extra-substituters = [ + "https://neorocks.cachix.org" + "https://mrcjkb.cachix.org" # for vimcats + ]; + extra-trusted-public-keys = [ + "neorocks.cachix.org-1:WqMESxmVTOJX7qoBC54TwrMMoVI1xAM+7yFin8NRfwk=" + "mrcjkb.cachix.org-1:KhpstvH5GfsuEFOSyGjSTjng8oDecEds7rbrI96tjA4=" + ]; + }; + inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";