This commit is contained in:
Stefan Schwarz 2022-03-22 20:10:26 +01:00
parent 47d15c0261
commit 3a66245670
3 changed files with 100 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
nodejs-16_x
];
}