gh repos and fix mac build

This commit is contained in:
Noah Masur
2022-07-01 08:45:07 -04:00
parent 8a22c80b2d
commit 35a57d2905
6 changed files with 59 additions and 13 deletions

View File

@ -1,9 +1,15 @@
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs; [
python310 # Standard Python interpreter
nodePackages.pyright # Python language server
black # Python formatter
];
home-manager.users.${config.user} = {
home.packages = with pkgs; [
# python310 # Standard Python interpreter
nodePackages.pyright # Python language server
black # Python formatter
];
programs.fish.shellAbbrs = { py = "python"; };
};
}