dotfiles/nixcfgs/modules/home/programs/starship.nix
2025-10-26 16:14:47 +00:00

10 lines
230 B
Nix

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