16 lines
439 B
Nix
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)";
|
|
};
|
|
};
|
|
};
|
|
}
|