infrastructure/hosts/thalassa/aoife/home/starship.nix
Vivian 2dd983451d
Some checks failed
Lint / lint (push) Failing after 2m50s
various updates
2024-04-24 12:05:59 +02:00

17 lines
487 B
Nix

{ pkgs, config, ...}:
let
starshipNerdFont = pkgs.runCommand "starship-nerd-font.toml" { STARSHIP_CACHE = "/tmp"; } ''
${config.programs.starship.package}/bin/starship preset nerd-font-symbols > $out
'';
in{
programs.starship = {
enable = true;
enableZshIntegration = true;
enableFishIntegration = true;
enableNushellIntegration = true;
settings = {
nix_shell.heuristic = true;
} // builtins.fromTOML (builtins.readFile starshipNerdFont);
};
}