This commit is contained in:
Sridhar Ratnakumar 2025-11-29 14:43:36 -05:00
parent 18f4bcc95d
commit f5c92e3ad5
3 changed files with 13 additions and 1 deletions

12
modules/home/cli/npm.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
# npm global packages
# https://nixos.wiki/wiki/Node.js#Using_npm_install_-g_fails
home.sessionPath = [
"$HOME/.npm-global/bin"
];
home.packages = with pkgs; [
nodejs
];
}

View file

@ -39,7 +39,6 @@ in
uv # For running Python stuff quickly.
# AI
gemini-cli
google-cloud-sdk
# Publishing

View file

@ -11,6 +11,7 @@
./cli/direnv.nix
# ./cli/zellij.nix
./cli/just.nix
./cli/npm.nix
./services/ttyd.nix
];
}