home-manager/private/starship.nix

12 lines
221 B
Nix
Raw Normal View History

2024-07-09 19:58:33 +00:00
{ lib, ... }:
{
programs.starship = {
enable = true;
settings = {
format = lib.concatStrings [ "$all" "$directory" "$character" ];
hostname.format = "[$ssh_symbol$hostname]($style) ";
};
};
}