From 1403c57356fd0e71693dcf7b649852aaa8f6f71e Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Mon, 12 Jan 2026 02:56:14 +0100 Subject: [PATCH] update python lsp --- home-modules/programming/python.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/home-modules/programming/python.nix b/home-modules/programming/python.nix index c95c651..3615701 100644 --- a/home-modules/programming/python.nix +++ b/home-modules/programming/python.nix @@ -1,5 +1,4 @@ -{ pkgs, ... }@all: with all; -{ +{ pkgs, ... }@all: with all; { home = let python-with-packages = pkgs.python3.withPackages (pp: with pp; [ ipython @@ -11,7 +10,7 @@ packages = [ python-with-packages ] ++ (with pkgs; [ - python311Packages.python-lsp-server + python313Packages.python-lsp-server ruff pyright ]);