ark/users/profiles/starship/default.nix
2022-03-09 23:55:02 +03:00

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;
};
};
};
}