From 713b46f06f058142eac83331ea1ff8e6e1aaf6c0 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 19:41:26 -0400 Subject: [PATCH] feat: add python packages --- users/profiles/programming/python.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 users/profiles/programming/python.nix 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 + ]; +}