blob: 5f0f87a9d430c5f3fc7426053fe3852bc69239e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ ... }:
{
programs.starship = {
enable = true;
settings = {
add_newline = false;
character = {
success_symbol = "[›](bold green)";
error_symbol = "[›](bold red)";
};
"$schema" = "https://starship.rs/config-schema.json";
hostname = {
ssh_only = true;
};
username = {
disabled = true;
};
kubernetes = {
disabled = false;
style = "bold blue";
};
nix_shell.disabled = false;
};
};
}
|