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