I currently have some switches set up plus an input_boolean that I am using as a switch (via an Automation). I’d like to create a group like the default group.all_switches which includes all switches plus the input_boolean. To do this I tried using something like this in my groups.yaml:
my_switches:
name: Switches
entities:
- group.all_switches
- input_boolean.my_boolean_switch
However, the nested all_switches group just shows as a single item in the group. Is there anyway to have this show the individual switches without needing to manually add the individual switches to the group?