1
Fork 0
satellite/modules/dev/javascript.nix
2020-04-29 15:13:36 +03:00

16 lines
238 B
Nix

{ pkgs, ... }:
let fromNpm = import ./npm { inherit pkgs; };
in {
home-manager.users.adrielus.home.packages = with pkgs;
with nodePackages;
with fromNpm; [
nodejs
node2nix
pnpm
yarn
tsdx
];
}