dotfiles/home/modules/cli/development/tooling/javascript/default.nix

17 lines
242 B
Nix
Raw Normal View History

2025-02-05 17:58:34 -06:00
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs.nodePackages_latest)
"@commitlint/config-conventional"
dotenv-cli
forever
nodejs
npm
typescript-language-server
;
};
}