dotfiles/home-manager/programs/starship.nix

13 lines
231 B
Nix
Raw Normal View History

2023-05-02 22:47:01 +02:00
{ config, pkgs, lib, ... }:
{
programs.starship = {
enable = true;
settings = {
add_newline = false;
character = { success_symbol = "[](bold white)"; };
package = { disabled = true; };
2023-05-02 22:47:01 +02:00
};
};
2023-05-02 22:47:01 +02:00
}