{ lib, config, ... }: let cfg = config.py.programs.starship; in { options.py.programs.starship.enable = lib.mkEnableOption "starship"; config.catppuccin.starship.enable = false; config.programs.starship = lib.mkIf cfg.enable { enable = true; enableFishIntegration = true; enableBashIntegration = true; enableZshIntegration = true; settings = import ./settings.nix { inherit lib; }; }; }