zaneyos/config/home/starship.nix

20 lines
366 B
Nix
Raw Normal View History

2024-01-18 08:36:06 +01:00
{ 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;
};
};
};
}