dev-shells/modules/nodejs.nix

9 lines
114 B
Nix

{ pkgs }:
pkgs.mkShell {
packages = with pkgs; [
nodejs
nodePackages.pnpm
nodePackages.yarn
];
}