{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = with pkgs; [
nodejs
nodePackages.npm
];
shellHook = ''
echo Welcome!
'';
}