Files
Archimedes/dev/shells.nix
2026-02-14 13:12:52 -06:00

30 lines
497 B
Nix

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