git updates update tmux conf add ansible tools squash me squash fix: get git aliases from plugin virt stuff add devenv some virt updates kubernetes
17 lines
317 B
Nix
17 lines
317 B
Nix
# A customizable prompt for shells.
|
|
{...}: {
|
|
programs.starship = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
add_newline = true;
|
|
character = {
|
|
success_symbol = "➜";
|
|
error_symbol = "➜";
|
|
};
|
|
aws = {
|
|
disabled = true;
|
|
};
|
|
};
|
|
};
|
|
}
|