Update manage-audio/shell.nix

main
Alina Marquardt 2025-05-17 12:49:19 +02:00
parent 522b10bfa5
commit 761176bb98
1 changed files with 3 additions and 4 deletions

View File

@ -4,12 +4,11 @@
pkgs.mkShell { pkgs.mkShell {
buildInputs = [ buildInputs = [
pkgs.nodejs pkgs.nodejs
pkgs.yarn # Optional, if you prefer yarn over npm pkgs.yarn
]; ];
shellHook = '' shellHook = ''
export NODE_PATH=$(pwd)/node_modules export NODE_PATH=$(pwd)/node_modules
echo "Welcome to the audio uploader development shell!" echo "audio uploader development shell"
''; '';
} }