dotfiles/nixcfgs/modules/home/programs/starship.nix

11 lines
268 B
Nix

{...}: {
catppuccin.starship.enable = false;
programs.starship = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
enableNushellIntegration = true;
enableIonIntegration = true;
};
}