{ pkgs, config, lib, ...}: { options.speccon18.home_manager.enable = lib.mkEnableOption "enables specs custom starship config"; config = lib.mkIf config.speccon18.home_manager.enable { programs.starship = { enable = true; enableZshIntegration = true; }; }; }