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