1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

fix(zigbee2mqtt): turn off annoying green LED

This commit is contained in:
2020-10-24 18:49:46 +02:00
parent c089f89eaa
commit 71c24dd1a5

View File

@@ -7,7 +7,10 @@ let
zigbee2mqttConfig = {
permit_join = false;
homeassistant = true;
serial.port = zigbee2mqttDevice;
serial = {
port = zigbee2mqttDevice;
disable_led = true;
};
mqtt = {
discovery = true;
base_topic = "zigbee";
@@ -68,6 +71,8 @@ in
};
};
networking.firewall.allowedTCPPorts = [ 1883 ];
environment.systemPackages = [ pkgs.mosquitto ];
services.home-assistant = {