ark/users/modules/starship/default.nix
2022-04-09 21:33:13 +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;
};
};
};
}