python and other fixes

This commit is contained in:
Noah Masur
2022-06-21 17:51:27 -04:00
parent c4ee4cafa5
commit 85116fc8fd
7 changed files with 29 additions and 8 deletions

View File

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