flake/home/applications/starship/default.nix

12 lines
191 B
Nix
Raw Normal View History

2024-06-14 23:25:48 +00:00
{
pkgs,
lib,
...
}: {
2023-11-29 10:18:56 +00:00
programs.starship = {
enable = true;
2024-06-18 00:59:05 +00:00
# FIXME: IFD
2024-06-14 23:25:48 +00:00
settings = lib.importTOML "${pkgs.starship}/share/starship/presets/nerd-font-symbols.toml";
2023-11-29 10:18:56 +00:00
};
}