17 lines
317 B
Nix
17 lines
317 B
Nix
{...}: {
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = {
|
|
add_newline = false;
|
|
character = {
|
|
success_symbol = "[>](bold green)";
|
|
error_symbol = "[>](bold red)";
|
|
};
|
|
directory = {
|
|
truncation_length = 2;
|
|
truncate_to_repo = false;
|
|
};
|
|
};
|
|
};
|
|
}
|