dotfiles/.config/nixshell/node.nix
2023-04-08 16:59:16 +02:00

11 lines
132 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
yarn
nodejs
nodePackages.npm
nodePackages.nodemon
];
}