Personal Nix setup

Fix zigbee2mqtt fronend setting

Changed files
+1 -1
modules
automation
+1 -1
modules/automation/zigbee.nix
···
settings = {
permit_join = cfg.zigbee.permitJoin;
serial.port = cfg.zigbee.serialPort;
-
frontend = cfg.zigbee.frontend;
+
frontend = if cfg.zigbee.frontend.enable then cfg.zigbee.frontend else false;
ota.disable_automatic_update_check = true;
mqtt = mkIf cfg.mqtt.enable {
server = "mqtts://localhost:${toString cfg.mqtt.port}";