14 lines
288 B
Nix
14 lines
288 B
Nix
{ config, ... }: {
|
||
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
||
|
||
programs.starship = {
|
||
enable = true;
|
||
settings = {
|
||
character = {
|
||
success_symbol = "[›](bold green)";
|
||
error_symbol = "[›](bold red)";
|
||
};
|
||
};
|
||
};
|
||
}
|