Files
nixos-config/home/common/programs/nodejs.nix
T
naps62 52618a852a 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>
2026-08-17 07:44:08 +00:00

11 lines
240 B
Nix

{ pkgs, ... }:
{
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
];
}