From 0fbb4e1de7f865ac437662f6ebfc087deae635f6 Mon Sep 17 00:00:00 2001 From: liv Date: Sat, 26 Oct 2024 11:16:25 +0200 Subject: [PATCH] shell: add deploy-rs as input for shell --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index b745eee..8902de2 100644 --- a/shell.nix +++ b/shell.nix @@ -9,6 +9,6 @@ in import nixpkgs { overlays = [ ]; }, ... }: { default = pkgs.mkShell { NIX_CONFIG = "extra-experimental-features = nix-command flakes"; - nativeBuildInputs = with pkgs; [ home-manager git nh ]; + nativeBuildInputs = with pkgs; [ home-manager git nh deploy-rs ]; }; }