flocon/home/terminal/shell/starship.nix

15 lines
234 B
Nix
Raw Normal View History

2024-11-06 15:49:58 +00:00
{
2024-09-08 14:00:25 +00:00
programs.starship = {
enable = true;
enableTransience = true;
settings = {
add_newline = true;
cmd_duration = {
style = "yellow";
format = "[ $duration]($style)";
};
};
2024-09-08 14:00:25 +00:00
};
}