add python black formatter to python.nix

This commit is contained in:
Noah Masur 2022-06-30 21:23:17 -04:00
parent 83488999f8
commit 8a22c80b2d

View File

@ -3,6 +3,7 @@
home-manager.users.${config.user}.home.packages = with pkgs; [
python310 # Standard Python interpreter
nodePackages.pyright # Python language server
black # Python formatter
];
}