Fixed ACL

This commit is contained in:
Alejandro Angulo 2023-11-30 20:05:14 -08:00
parent e4d27ff81c
commit 26ec076727
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6

View file

@ -26,13 +26,16 @@ in {
users = { users = {
hass = { hass = {
acl = [ acl = [
"read home/#" "readwrite home/#"
"readwrite homeassistant/status" "readwrite homeassistant/#"
]; ];
passwordFile = config.age.secrets.hass_mqtt.path; passwordFile = config.age.secrets.hass_mqtt.path;
}; };
theengs_ble_gateway = { theengs_ble_gateway = {
acl = ["readwrite home/#"]; acl = [
"readwrite home/#"
"readwrite homeassistant/#"
];
passwordFile = config.age.secrets.theengs_ble_mqtt.path; passwordFile = config.age.secrets.theengs_ble_mqtt.path;
}; };
}; };