From 01cb3dc43447b5a89e8ccb7fe373b31a3f265942 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Tue, 22 Jul 2025 03:16:51 +1000 Subject: [PATCH] Dev shell now sources /bin/bash + define makejs function --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 37eb38c..f0a860a 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,12 @@ gnumake emscripten ]; + + shell = "${pkgs.bash}/bin/bash"; + + shellHook = '' + function makejs { make -f Makefile.js $@; } + ''; }; }; }