17 lines
347 B
Nix
Raw Normal View History

2022-06-21 17:51:27 -04:00
{ config, pkgs, ... }: {
2022-07-01 08:45:07 -04:00
home-manager.users.${config.user} = {
home.packages = with pkgs; [
# python310 # Standard Python interpreter
nodePackages.pyright # Python language server
black # Python formatter
2022-07-18 23:34:32 -04:00
python310Packages.flake8 # Python linter
2022-07-01 08:45:07 -04:00
];
2022-07-05 08:42:24 -04:00
programs.fish.shellAbbrs = { py = "python3"; };
2022-07-01 08:45:07 -04:00
};
2022-06-21 17:51:27 -04:00
}