Compare commits

..

No commits in common. "91c01f288c1cd6eda3aa946eb5772b8b405d15ac" and "11194c433a51f8b21128b4e7b39535fc63765ef4" have entirely different histories.

View file

@ -152,8 +152,7 @@ in {
add_newline = false; add_newline = false;
format = lib.concatStrings [ format = lib.concatStrings [
"$os" "$os"
" " "$container"
"($container )"
"\\[" "\\["
"([$username](bold yellow)@[$hostname](bold red))" "([$username](bold yellow)@[$hostname](bold red))"
"[$directory](cyan)" "[$directory](cyan)"
@ -174,7 +173,6 @@ in {
# Remove trailing space from format string # Remove trailing space from format string
format = "([\\[$all_status$ahead_behind\\]]($style))"; format = "([\\[$all_status$ahead_behind\\]]($style))";
}; };
hostname = { format = "[$hostname]($style)"; };
shell = { shell = {
# Show which shell if not using zsh (the default) # Show which shell if not using zsh (the default)
disabled = false; disabled = false;
@ -192,7 +190,6 @@ in {
Macos = ""; Macos = "";
}; };
}; };
username = { format = "[$user]($style)"; };
}; };
}; };