From 107b4f24d1b18330ca9df707509e8fbce13887ee Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Tue, 18 Aug 2026 21:24:18 -0400 Subject: [PATCH] fix(home_assistant): update firewall settings and remove redundant http server port --- systems/brain/services/home_assistant.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/brain/services/home_assistant.nix b/systems/brain/services/home_assistant.nix index 97aa65e..1bc8c41 100644 --- a/systems/brain/services/home_assistant.nix +++ b/systems/brain/services/home_assistant.nix @@ -1,5 +1,7 @@ { pkgs, ... }: { + networking.firewall.allowedTCPPorts = [ 8123 ]; + users = { users.hass = { isSystemUser = true; @@ -11,9 +13,7 @@ services = { home-assistant = { enable = true; - openFirewall = true; config = { - http.server_port = 8123; homeassistant = { time_zone = "America/New_York"; unit_system = "us_customary";