14 lines
238 B
Nix
14 lines
238 B
Nix
{ ... }:
|
|
{
|
|
programs.starship = {
|
|
enable = true;
|
|
settings = {
|
|
add_newline = false;
|
|
directory = {
|
|
style = "fg:#fbb6c4";
|
|
format = "[$path]($style)";
|
|
truncation_length = 3;
|
|
};
|
|
};
|
|
};
|
|
}
|