This commit is contained in:
2025-10-22 06:13:42 -04:00
parent 08e5c31957
commit 557a8cc3d2

View File

@@ -12,11 +12,25 @@
in { in {
devShells.x86_64-linux.default = pkgs.mkShell { devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
libgcc # C++ deps
sioclient
ftxui
libgccjit
meson
# TypeScript deps
bun bun
nodejs_24
prisma
openssl_3 # needed for prisma
# DB deps
ephemeralpg
postgresql
]; ];
shellHook = '' shellHook = ''
echo "Welcome to the methylphenidate dev environment!" echo "Welcome to the methylphenidate dev environment!"
export NIX_LDFLAGS="''${NIX_LDFLAGS/-rpath $out\/lib /}"
''; '';
}; };
}; };