Personal Nix setup

Update zigbee2mqtt options

Changed files
+4 -1
modules
automation
+4 -1
modules/automation/zigbee.nix
···
enable = true;
settings = {
permit_join = cfg.zigbee.permitJoin;
-
serial.port = cfg.zigbee.serialPort;
+
serial = {
+
adapter = "zstack";
+
port = cfg.zigbee.serialPort;
+
};
frontend = if cfg.zigbee.frontend.enable then cfg.zigbee.frontend else false;
ota.disable_automatic_update_check = true;
mqtt = mkIf cfg.mqtt.enable {