Files
dotfiles/home-modules/programming/js.nix
Lennart J. Kurzweg (Nx2) d439996d0c js lsp
2025-05-31 14:59:17 +02:00

9 lines
135 B
Nix

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