added starship

This commit is contained in:
steven carpenter 2026-03-15 21:18:54 -04:00
parent 12cbfd1f98
commit 66230f34c4
4 changed files with 21 additions and 21 deletions

View file

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
options.speccon18.hm.starship.enable = lib.mkEnableOption "Enable Starship";
programs.starship = {
enable = true;
# Configuration written to ~/.config/starship.toml
settings = {
add_newline = false;
character = {
success_symbol = "[](bold green)";
error_symbol = "[](bold red)";
};
};
};
}