diff --git a/users/profiles/programming/python.nix b/users/profiles/programming/python.nix new file mode 100644 index 0000000..2cfe4c9 --- /dev/null +++ b/users/profiles/programming/python.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + python3 + python310 + python39Packages.pip + python39Packages.black + python-language-server + ]; +}