From 852fffe40df847ecb3e8c86b375c13ec65f83ebc Mon Sep 17 00:00:00 2001 From: oddlama Date: Sun, 12 Mar 2023 01:19:06 +0100 Subject: [PATCH] feat(zackbiene): enable zigbee2mqtt frontend --- hosts/zackbiene/home-assistant.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/zackbiene/home-assistant.nix b/hosts/zackbiene/home-assistant.nix index 1b6419e..7cefefc 100644 --- a/hosts/zackbiene/home-assistant.nix +++ b/hosts/zackbiene/home-assistant.nix @@ -8,6 +8,7 @@ "esphome" "fritzbox" "spotify" + "zha" "mqtt" ]; openFirewall = true; @@ -33,6 +34,7 @@ } ]; }; + networking.firewall.allowedTCPPorts = [8072]; services.zigbee2mqtt = { enable = true; settings = { @@ -41,6 +43,9 @@ serial = { port = "/dev/serial/by-id/usb-Silicon_Labs_Sonoff_Zigbee_3.0_USB_Dongle_Plus_0001-if00-port0"; }; + frontend = { + port = 8072; + }; }; }; }