nixos-config/home-manager/modules/starship.nix
2024-12-23 14:16:50 -05:00

19 lines
356 B
Nix

# A customizable prompt for shells.
{ ... }:
{
programs.starship = {
enable = true;
enableZshIntegration = true;
enableNushellIntegration = true;
settings = {
add_newline = true;
character = {
success_symbol = "";
error_symbol = "";
};
aws = {
disabled = true;
};
};
};
}