diff --git a/hosts/zeta/services/home-assistant.nix b/hosts/zeta/services/home-assistant.nix index ce06ccd5..2b98d487 100644 --- a/hosts/zeta/services/home-assistant.nix +++ b/hosts/zeta/services/home-assistant.nix @@ -13,6 +13,7 @@ # Required by ai_task → camera import chain in service descriptions "camera" "mobile_app" + "zeroconf" ]; config = { http = { @@ -22,7 +23,12 @@ ]; }; mobile_app = {}; + zeroconf = {}; }; }; networking.firewall.allowedTCPPorts = [8123]; + services.avahi = { + enable = true; + nssmdns4 = true; + }; }