use perspective projection

This commit is contained in:
2026-02-16 12:28:13 -06:00
parent c25ed1949d
commit a422e5cfa2
2 changed files with 65 additions and 21 deletions

View File

@@ -2,28 +2,57 @@
perSystem = { config, system, pkgs, self', inputs', ... }: {
devShells.default = pkgs.mkShellNoCC {
devShells = {
bash = pkgs.mkShellNoCC {
packages = with pkgs; [
clang
packages = with pkgs; [
clang
glfw
glew
glfw
glew
sdl3
sdl3
curl
glm
nlohmann_json
stb
curl
glm
nlohmann_json
stb
gamenetworkingsockets
gamenetworkingsockets
];
];
shellHook = ''
shellHook = ''
'';
};
zsh = pkgs.mkShellNoCC {
packages = with pkgs; [
clang
glfw
glew
sdl3
curl
glm
nlohmann_json
stb
gamenetworkingsockets
];
shellHook = ''
exec zsh
'';
};
default = self'.devShells.bash;
};
};
}