1
0
Fork 0

pkgsets: add javascript packages

This commit is contained in:
Kevin Baensch 2021-10-28 10:19:20 +02:00
parent d6641e36c0
commit 3ea8866748
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 14 additions and 0 deletions

14
pkgsets/nodejs.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
config.machine.pkgsets.nodejs.pkgs = [ pkgs.nodejs pkgs.deno ] ++
(with pkgs.nodePackages; [
autoprefixer
browserify
serve parcel-bundler webpack webpack-cli
create-react-app
prettier
typescript
typescript-language-server
]);
}