Files
dotfiles/home-modules/programming/js.nix
Lennart J. Kurzweg (Nx2) 0a52deb024 js lsp
2025-05-26 14:44:39 +02:00

9 lines
135 B
Nix

{ pkgs, lib, host, ... }:
lib.mkIf (host != "NxACE")
{
home.packages = with pkgs; [
nodejs
typescript-language-server
];
}