Compare commits

..

1 Commits
1.0 ... main

Author SHA1 Message Date
Alina Marquardt 761176bb98 Update manage-audio/shell.nix 2025-05-17 12:49:19 +02:00
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"
''; '';
} }