28 lines
516 B
Nix
28 lines
516 B
Nix
{ config, pkgs, lib, user, ... }:
|
||
{
|
||
home-manager.users.${user.username} = {
|
||
programs.starship = {
|
||
enable = true;
|
||
};
|
||
|
||
# Catppuccin Mocha theme for Starship
|
||
xdg.configFile."starship.toml".text = ''
|
||
format = "$all"
|
||
|
||
[character]
|
||
success_symbol = "[❯](bold green)"
|
||
error_symbol = "[❯](bold red)"
|
||
|
||
[directory]
|
||
style = "bold lavender"
|
||
|
||
[git_branch]
|
||
symbol = " "
|
||
style = "bold maroon"
|
||
|
||
[package]
|
||
disabled = true
|
||
'';
|
||
};
|
||
}
|