mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-21 15:41:19 +02:00
13 lines
293 B
Nix
13 lines
293 B
Nix
{config, ...}: {
|
||
systemd.user.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
||
|
||
programs.starship = {
|
||
enable = true;
|
||
settings = {
|
||
character = {
|
||
success_symbol = "[›](bold green)";
|
||
error_symbol = "[›](bold red)";
|
||
};
|
||
};
|
||
};
|
||
} |