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