mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-23 07:03:07 +01:00
20 lines
366 B
Nix
20 lines
366 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
# Starship Prompt
|
|
programs.starship = {
|
|
enable = true;
|
|
package = pkgs.starship;
|
|
settings = {
|
|
add_newline = true;
|
|
character = {
|
|
success_symbol = "[➜](bold blue)";
|
|
error_symbol = "[➜](bold red)";
|
|
};
|
|
package = {
|
|
disabled = false;
|
|
};
|
|
};
|
|
};
|
|
}
|