11 lines
132 B
Nix
11 lines
132 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = [
|
|
yarn
|
|
nodejs
|
|
nodePackages.npm
|
|
nodePackages.nodemon
|
|
];
|
|
}
|
|
|