diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7423b46 --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ + pkgs ? import { }, +}: + +pkgs.mkShell { + buildInputs = with pkgs; [ + nodejs + (poetry.override { python3 = python312; }) + ]; + + shellHook = '' + poetry install + ''; +}