From 5fd5eb892b3f34df4447bd05e7284eb9b099ceed Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 16 Feb 2026 12:39:33 -0600 Subject: [PATCH] add nvim devShells --- dev/shells.nix | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/dev/shells.nix b/dev/shells.nix index 2f53035..1353550 100644 --- a/dev/shells.nix +++ b/dev/shells.nix @@ -27,6 +27,31 @@ }; + nvim-bash = pkgs.mkShellNoCC { + + packages = with pkgs; [ + clang + + glfw + glew + + sdl3 + + curl + glm + nlohmann_json + stb + + gamenetworkingsockets + + ]; + + shellHook = '' + exec nvim + ''; + + }; + zsh = pkgs.mkShellNoCC { packages = with pkgs; [ @@ -53,6 +78,32 @@ }; + nvim-zsh = pkgs.mkShellNoCC { + + packages = with pkgs; [ + clang + + glfw + glew + + sdl3 + + curl + glm + nlohmann_json + stb + + gamenetworkingsockets + + ]; + + shellHook = '' + export SHELL=$(realpath `which zsh`) + exec nvim + ''; + + }; + default = self'.devShells.bash; }; };