1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-07-21 19:05:19 +02:00
This commit is contained in:
TheGeneralist 2026-06-22 14:29:08 +02:00
parent 13267aafb3
commit d5f9a962d6
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4

View file

@ -68,12 +68,15 @@ in
home.sessionVariables.PNPM_HOME = home.sessionVariables.PNPM_HOME =
if config.isDarwin then "$HOME/Library/pnpm" else "$HOME/.local/share/pnpm"; if config.isDarwin then "$HOME/Library/pnpm" else "$HOME/.local/share/pnpm";
home.sessionVariables.BUN_INSTALL = "$HOME/.bun";
home.sessionPath = [ home.sessionPath = [
"node_modules/.bin" "node_modules/.bin"
"/opt/homebrew/bin" "/opt/homebrew/bin"
"/opt/homebrew/opt" "/opt/homebrew/opt"
"$HOME/.npm-packages/bin" "$HOME/.npm-packages/bin"
"$PNPM_HOME" "$PNPM_HOME"
"$BUN_INSTALL/bin"
]; ];
} }
]; ];