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