diff --git a/devshell.nix b/devshell.nix index 1d22bbbe..c659f8a6 100644 --- a/devshell.nix +++ b/devshell.nix @@ -1,9 +1,16 @@ { pkgs }: pkgs.mkShell { - buildInputs = with pkgs; [ + packages = with pkgs; [ + nixfmt + deno + git rustc cargo ]; + buildInputs = with pkgs; [ + pkg-config + openssl + ]; shellHook = '' echo "dev-shell-loaded" '';