add nvim devShells

This commit is contained in:
2026-02-16 12:39:33 -06:00
parent 6abcaeb0d1
commit 5fd5eb892b

View File

@@ -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 { zsh = pkgs.mkShellNoCC {
packages = with pkgs; [ 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; default = self'.devShells.bash;
}; };
}; };