diff --git a/shell.nix b/shell.nix index 7423b46..065ef1b 100644 --- a/shell.nix +++ b/shell.nix @@ -5,10 +5,13 @@ pkgs.mkShell { buildInputs = with pkgs; [ nodejs - (poetry.override { python3 = python312; }) + python3 + poetry ]; shellHook = '' + python -m venv .venv + . .venv/bin/activate poetry install ''; }