flake/programs/starship/default.nix

16 lines
285 B
Nix
Raw Normal View History

2024-02-14 15:05:21 +01:00
{
hm.programs.starship = {
enable = true;
settings =
{
add_newline = false;
directory = {
truncation_length = 3;
truncation_symbol = "/";
};
}
// builtins.fromTOML (builtins.readFile ./nerd-font.toml);
};
}