dotfiles/modules/programming/python.nix

10 lines
222 B
Nix
Raw Normal View History

2022-06-21 21:51:27 +00:00
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs; [
python310 # Standard Python interpreter
nodePackages.pyright # Python language server
black # Python formatter
2022-06-21 21:51:27 +00:00
];
}