feat: use deploy-rs from nixpkgs binary cache

This commit is contained in:
Benjamin Bädorf 2023-10-07 17:19:12 +02:00
parent d0785468d0
commit e646612944
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -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; }; })
];
};
};