1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-05-30 08:37:01 +02:00

Compare commits

..

6 commits

View file

@ -36,6 +36,7 @@ in
nodejs nodejs
nodePackages."sass" nodePackages."sass"
pnpm_9
] ]
++ optionals config.onLinux [ ++ optionals config.onLinux [
#gcc_multi #gcc_multi
@ -64,10 +65,14 @@ in
}; };
# TODO: the two from the last (below) should be somehow moved to their own files # TODO: the two from the last (below) should be somehow moved to their own files
home.sessionVariables.PNPM_HOME =
if config.isDarwin then "$HOME/Library/pnpm" else "$HOME/.local/share/pnpm";
home.sessionPath = [ home.sessionPath = [
"node_modules/.bin" "node_modules/.bin"
"/opt/homebrew/bin" "/opt/homebrew/bin"
"$HOME/.npm-packages/bin" "$HOME/.npm-packages/bin"
"$PNPM_HOME"
]; ];
} }
]; ];