From 557a8cc3d24d27380ff54b4d5c00f277ef5c0460 Mon Sep 17 00:00:00 2001 From: Kevin Puig Date: Wed, 22 Oct 2025 06:13:42 -0400 Subject: [PATCH] flake --- flake.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 149b4ed..6b5c98f 100644 --- a/flake.nix +++ b/flake.nix @@ -12,11 +12,25 @@ in { devShells.x86_64-linux.default = pkgs.mkShell { buildInputs = with pkgs; [ - libgcc + # C++ deps + sioclient + ftxui + libgccjit + meson + + # TypeScript deps bun + nodejs_24 + prisma + openssl_3 # needed for prisma + + # DB deps + ephemeralpg + postgresql ]; shellHook = '' echo "Welcome to the methylphenidate dev environment!" + export NIX_LDFLAGS="''${NIX_LDFLAGS/-rpath $out\/lib /}" ''; }; };