nixos/home-manager/software/starship/default.nix

22 lines
365 B
Nix
Raw Normal View History

2022-04-17 21:16:09 +02:00
{ lib, ... }:
{
programs.starship = {
settings = {
add_newline = false;
format = lib.concatStrings [
"$username"
"$hostname"
"$directory"
"$nix_shell"
"$git_branch"
"$git_status"
"$character"
];
nix_shell = {
format = "$symbol";
};
};
enable = true;
};
}