From e6466129444fa011a081fb611e8812c6e5a212e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Sat, 7 Oct 2023 17:19:12 +0200 Subject: [PATCH] feat: use deploy-rs from nixpkgs binary cache --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ee580d9..476e4c4 100644 --- a/flake.nix +++ b/flake.nix @@ -66,7 +66,11 @@ inherit inputs; pkgs = import inputs.nixpkgs { inherit system; - overlays = [ inputs.agenix.overlays.default ]; + overlays = [ + inputs.agenix.overlays.default + inputs.deploy-rs.overlay + (self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = super.deploy-rs.lib; }; }) + ]; }; };