Configuration.yaml | customize: !include

Hello everyone,

Newbie here. While trying to divide configuration.yaml as per recommendations of the community, I got an error some others did. I did as experts suggested, adding customize inside homeassistant. But I still get this message:

“Error loading /config/configuration.yaml: mapping values are not allowed here
in “/config/configuration.yaml”, line 4, column 12”

I can’t figure what’s wrong. I drop the code here, for any of you kind enough to give it a look.
Thanks!

homeassistant
  customize: !include customize.yaml

default_config:

automation: !include automations.yaml
device_tracker: !include device_tracker.yaml
group: !include groups.yaml
scene: !include scenes.yaml
script: !include scripts.yaml
sensor: !include sensor.yaml
switch: !include switch.yaml
zone: !include zone.yaml

You are missing the colon ( : ) after homeassistant:

3 Likes

:blush:
Thanks!