flake/programs/starship/default.nix
2024-12-25 18:21:24 +01:00

13 lines
231 B
Nix

{
hm.programs.starship = {
enable = true;
settings = {
add_newline = false;
directory = {
truncation_length = 3;
truncation_symbol = "/";
};
} // (import ./nerd-font.nix);
};
}