infrastructure/hosts/neodymium/home/shell/starship.nix

16 lines
252 B
Nix

{ lib, ... }: {
programs.starship = {
enable = true;
enableZshIntegration = true;
settings = {
format = lib.concatStrings [
"$line_break"
"$package"
"$line_break"
"$character"
];
};
};
}