Initial attempt
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s

This commit is contained in:
alejandro-angulo 2026-01-11 16:50:22 -08:00
parent 0f2050f7aa
commit b458b776b1
5 changed files with 155 additions and 0 deletions

View file

@ -15,6 +15,7 @@ in
hass_mqtt.file = ../../../../secrets/hass_mqtt.age;
teslamate_mqtt.file = ../../../../secrets/teslamate_mqtt.age;
zigbee2mqtt_mqtt.file = ../../../../secrets/zigbee2mqtt_mqtt.age;
frigate_mqtt.file = ../../../../secrets/frigate_mqtt.age;
};
services.mosquitto = {
@ -43,6 +44,10 @@ in
];
passwordFile = config.age.secrets.zigbee2mqtt_mqtt.path;
};
frigate = {
acl = [ "readwrite frigate/#" ];
passwordFile = config.age.secrets.frigate_mqtt.path;
};
};
}
];