infrastructure/hosts/neodymium/home/shell/starship.nix
2023-12-15 16:18:36 +01:00

16 lines
250 B
Nix

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