nix-dotfiles/hosts/modules/npm.nix
2026-03-02 03:38:24 -07:00

9 lines
146 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
nodejs_24
nodePackages.npm
yarn
bun
nodePackages.typescript
];
}