24 lines
741 B
Nix
24 lines
741 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
aws.style = "bold #FF9580";
|
|
cmd_duration.style = "bold #FFFF80";
|
|
directory.style = "bold #FFCA80";
|
|
hostname.style = "bold #9580FF";
|
|
git_branch.style = "bold #80FFEA";
|
|
git_status.style = "bold #FF80BF";
|
|
username = {
|
|
format = "[$user]($style) on ";
|
|
style_user = "bold #8AFF80";
|
|
};
|
|
character = {
|
|
success_symbol = "[λ](bold #F8F8F2)";
|
|
error_symbol = "[λ](bold #FF9580)";
|
|
};
|
|
};
|
|
};
|
|
} |