shell: add deploy-rs as input for shell

This commit is contained in:
insects 2024-10-26 11:16:25 +02:00
parent 3d92ae90e7
commit 0fbb4e1de7

View file

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