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

16 lines
244 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
yarn
nodejs
] ++ (with pkgs.nodePackages; [
npm
nodemon
]);
shellHook = ''
export NAME="react-shell"
export NODE_OPTIONS=--openssl-legacy-provider
'';
}