{ config, lib, ... }: let cfg = config.ctucxConfig.programs.starship; in { options = { ctucxConfig.programs.starship = { enable = lib.mkEnableOption "starship"; }; }; config = lib.mkIf cfg.enable { home-manager.users.katja.programs.starship = { enable = true; enableBashIntegration = true; enableZshIntegration = true; settings = { add_newline = false; status = { disabled = false; }; }; }; }; }