21 lines
418 B
Nix
21 lines
418 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = {
|
|
add_newline = true;
|
|
command_timeout = 1300;
|
|
scan_timeout = 50;
|
|
format = "$all$nix_shell$nodejs$lua$golang$rust$php$git_branch$git_commit$git_state$git_status\n$username$hostname$directory";
|
|
character = {
|
|
success_symbol = "[:3c](#F79AD3) ";
|
|
error_symbol = "[>:3](#D90429) ";
|
|
};
|
|
};
|
|
};
|
|
}
|