ooknet/home/ooks/opt/shell/starship.nix
2023-07-31 14:47:58 +12:00

15 lines
243 B
Nix

{ config, pkgs, ... }:
{
programs = {
starship = {
enable = true;
setting = {
character = {
success_symbol = "[](bold green)";
error_symbol = "[](bold red)";
}
}
};
};
}