From 2d7e6bd5d6c0f646644e69ef55e6faaa673ae13d Mon Sep 17 00:00:00 2001 From: Hare Date: Sun, 5 Apr 2026 04:54:07 +0900 Subject: [PATCH] Update devshell.nix --- devshell.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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" '';