mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
16 lines
300 B
Nix
16 lines
300 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
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 = "python3"; };
|
|
|
|
};
|
|
|
|
}
|