os/modules/home-assistant/zigbee.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1 KiB
Nix
Raw Normal View History

2023-06-12 15:04:12 +00:00
{
lib,
config,
pkgs,
...
}:
with lib; let
haCfg = config.pub-solar.home-assistant;
cfg = config.pub-solar.home-assistant.zigbee2mqtt;
in {
config = mkIf (haCfg.enable && cfg.enable) {
networking.firewall.allowedTCPPorts = [
8081 # zigbee2mqtt
2023-06-12 15:04:12 +00:00
];
services.zigbee2mqtt = {
enable = true;
settings = {
frontend = {
port = 8081;
};
2023-06-12 15:04:12 +00:00
permit_join = false;
2023-11-11 00:12:57 +00:00
homeassistant = {
legacy_entity_attributes = false;
};
availability = true;
advanced = {
2023-11-11 00:12:57 +00:00
legacy_api = false;
legacy_availability_payload = false;
};
2023-06-12 15:04:12 +00:00
mqtt = {
user = "z2m";
password = "!secrets.yaml mqtt_password";
};
serial = {
port = cfg.device;
adapter = mkIf (cfg.adapter != null) cfg.adapter;
};
groups = "groups.yaml";
2023-11-11 00:12:57 +00:00
ota = {
zigbee_ota_override_index_location = "/var/lib/zigbee2mqtt/index.json";
};
2023-06-12 15:04:12 +00:00
};
};
};
}