Entity-Filter Entity Card with buttons

I’m trying to create a Entity-Filter Card that filters a list of possible entities (as designed) and display the results as buttons rather then the standard view.
This config creates a view of the entities exactly as I’d like them to be shown, but I can’t figure out how to use this within an Entity-Filter card.

cards:
      - type: entities
        title: "OverDue Chores"
        entities:
          - type: buttons
            entities: &entity_list
              - entity: sensor.chore_vacuuming
                name: Vacuuming
                hold_action:
                  action: fire-dom-event
                  browser_mod:
                    service: browser_mod.more_info
                    data:
                      entity: input_datetime.chore_vacuuming

              - entity: sensor.chore_main_bathroom
                name: Main Bathroom
                hold_action:
                  action: fire-dom-event
                  browser_mod:
                    service: browser_mod.more_info
                    data:
                      entity: input_datetime.chore_main_bathroom

              - entity: sensor.chore_main_toilet
                name: Main Toilet
                hold_action:
                  action: fire-dom-event
                  browser_mod:
                    service: browser_mod.more_info
                    data:
                      entity: input_datetime.chore_main_toilet
            card_mod:
              style: |
                :host {
                        --ha-chip-background-color: var(--error-color);
                        --ha-chip-text-color: white;
                        --secondary-text-color: white;
                    }

Any pointers on how to use this within the entity-filter card?