19 lines
356 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|