pantheon/users/modules/programs/starship.nix
2025-03-14 13:44:18 +08:00

11 lines
213 B
Nix

{
# starship is a customisable prompt for any shell
programs.starship = {
enable = true;
settings = {
add_newline = false;
format = "$character";
right_format = "$all";
};
};
}