12 lines
221 B
Nix
12 lines
221 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
format = lib.concatStrings [ "$all" "$directory" "$character" ];
|
||
|
hostname.format = "[$ssh_symbol$hostname]($style) ";
|
||
|
};
|
||
|
};
|
||
|
}
|