16 lines
250 B
Nix
16 lines
250 B
Nix
{lib, ...}: {
|
|
programs.starship = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
|
|
settings = {
|
|
format = lib.concatStrings [
|
|
"$line_break"
|
|
"$package"
|
|
"$line_break"
|
|
"$character"
|
|
];
|
|
};
|
|
};
|
|
}
|