From 2ee4ca78ce859c71c09fb9427a83a3d6348369d5 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sat, 27 Apr 2024 15:26:22 +0200 Subject: [PATCH] That wasn't it, let's try removing the venv from python --- jupyter/flake.nix | 1 + python/flake.nix | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyter/flake.nix b/jupyter/flake.nix index cb8b521..5b473b3 100644 --- a/jupyter/flake.nix +++ b/jupyter/flake.nix @@ -21,6 +21,7 @@ [python311 virtualenv] ++ (with pkgs.python311Packages; [ pip + python-lsp-server venvShellHook requests jupyter diff --git a/python/flake.nix b/python/flake.nix index dac0c7f..b8682df 100644 --- a/python/flake.nix +++ b/python/flake.nix @@ -16,12 +16,11 @@ in { devShells = forEachSupportedSystem ({pkgs}: { default = pkgs.mkShell { - venvDir = "venv"; packages = with pkgs; [python311] ++ (with pkgs.python311Packages; [ pip - venvShellHook + python-lsp-server ]); }; });