dotfiles/modules/programming/python.nix
2022-06-21 17:51:27 -04:00

9 lines
193 B
Nix

{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs; [
python310 # Standard Python interpreter
nodePackages.pyright # Python language server
];
}