From 933d82312075fbc590d161742799c0dd1784c2f6 Mon Sep 17 00:00:00 2001 From: Emil Ivanichkov Date: Mon, 22 Jan 2024 16:19:37 +0200 Subject: [PATCH] build(nix): Ensure `PATH` variable includes absolute path to `node_modules` --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index a738f154..116849f7 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,7 @@ figlet ]; shellHook = '' + export PATH="$PWD/node_modules/.bin:$PATH" if [ "''${DISABLE_DEVSHELL_BANNER:-}" != true ]; then figlet "Welcome to Nimbus-GUI" fi