nixos/pkgsets/nodejs.nix

12 lines
221 B
Nix
Raw Normal View History

2024-07-29 13:00:00 +02:00
{pkgs, ...}: {
2023-09-11 20:23:04 +02:00
config.machine.pkgsets.nodejs.pkgs =
2024-07-29 13:00:00 +02:00
(with pkgs; [nodejs yarn deno])
2023-09-11 20:23:04 +02:00
++ (with pkgs.nodePackages; [
autoprefixer
mermaid-cli
prettier
tailwindcss
typescript
]);
2021-10-28 10:19:20 +02:00
}