1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat(zackbiene): enable zigbee2mqtt frontend

This commit is contained in:
oddlama 2023-03-12 01:19:06 +01:00
parent 28b7ef0d9a
commit 852fffe40d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -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;
};
};
};
}