flakes/navi/laniakea/starship.nix
2026-04-10 18:50:25 +03:00

14 lines
263 B
Nix

{lib, ...}: {
programs.starship = {
enable = true;
enableBashIntegration = true;
settings = {
add_newline = false;
format = lib.concatStrings [
"$directory"
"$nix_shell"
"[](fg:purple) "
];
};
};
}