diff --git a/profiles/develop/programming/python.nix b/profiles/develop/programming/python.nix index 2cfe4c9..79b11d7 100644 --- a/profiles/develop/programming/python.nix +++ b/profiles/develop/programming/python.nix @@ -1,9 +1,13 @@ -{ pkgs, ... }: { - environment.systemPackages = with pkgs; [ +{ pkgs, lib, ... }: { + environment.systemPackages = with pkgs; lib.lists.flatten [ python3 - python310 - python39Packages.pip - python39Packages.black + (with python39Packages; [ + pip + black + mypy + ]) python-language-server + + python310 ]; }