Google home with Nabu Casa

Hi,
I have a Nabu casa account and have the service connected to my google account.

What is the next step to be able to trigger a script or control components in Home assistant with my Google Home Mini?
Where do I configure what voice commands will do what, and how?
I have tried to find some examples but without luck.

I am running the latest 0.80.3 version of HA.

Thank you for guidance!

https://www.nabucasa.com/config/google_assistant/

Hi, Yes I have looked at this, but still not very clear to me.
If I for example only want to trigger a script called for example “all_lights” I guess I would not need Filter?

What is entity config? Would that be the name of my script?
Name? Is that the voice command that would trigger the script?
Aliases? Again, what would I use this for?

cloud:
  google_actions:
    filter:
      include_entities:
        - light.kitchen
        - light.kitchen_left
      include_domains:
        - switch
      exclude_entities:
        - switch.outside
    entity_config:
      switch.kitchen:
        name: Custom Name for Google Assistant
        aliases:
         - bright lights
         - entry lights
        room: living room

This is the example of my setting under entity_config:
For voice command. I use turn on-off for the switch, input_boolean, media player, group. I use enable, disable for the script.

  entity_config:
    group.timer_light:
      name: Auto Outdoor Light
      aliases:
        - outdoor light
        - auto outdoor light
      expose: true     
      room: Office      
    switch.test_light_1:
      name: Test Light 1
      aliases:
        - test light 1
        - light number 1
        - gratia light 1
        - first light
      expose: true
      room: Office
    media_player.home_speaker:
      name: Home Speaker
      aliases:
        - Home Speaker
      expose: true
      room: Office 
    input_boolean.alarmclock_wd_enableds:
      name: Alarm Clock Weekday
      aliases:
        - alarm clock weekday
      expose: true 
      room: Bedroom 1  
    script.mirror_monitor_on:
      name: Monitor on
      aliases:
        - monitor on
        - mirror on
        - turn on mirror
        - turn on monitor
      expose: true
      room: Bedroom 2
1 Like

Got it working now, thanks for the help!