nixos/pkgsets/nodejs.nix

17 lines
247 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2023-09-11 20:23:04 +02:00
config.machine.pkgsets.nodejs.pkgs =
(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
}