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