52618a852a
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>
11 lines
240 B
Nix
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
|
|
];
|
|
}
|