nixos-config/modules/home-manager/starship.nix
2026-03-15 21:18:54 -04:00

16 lines
439 B
Nix

{ 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)";
};
};
};
}