feat: add node and pnpm to the shared dev tooling

nodejs.nix shipped only the language server, so a fresh machine has no
node runtime — rev's clone cannot install its dependencies.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
naps62
2026-08-17 07:44:08 +00:00
parent 0fa1a31489
commit 52618a852a
+4
View File
@@ -2,5 +2,9 @@
{
home.packages = with pkgs; [
typescript-language-server
# nodejs_26, not the nixpkgs default 24: rev's package.json sets
# engines >=26, and its systemd unit pins the same major.
nodejs_26
pnpm
];
}