From 51293382e86d112968a5981238e6ac038a99550d Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Wed, 11 Feb 2026 14:19:39 +0000 Subject: [PATCH] meow --- config/modules/services/home-assistant.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/config/modules/services/home-assistant.nix b/config/modules/services/home-assistant.nix index 87d30e0..0c97074 100644 --- a/config/modules/services/home-assistant.nix +++ b/config/modules/services/home-assistant.nix @@ -16,7 +16,7 @@ finalImageName = "homeassistant/home-assistant"; finalImageTag = "latest"; sha256 = "sha256-fSQ3luRSFHiWP0qDzsiZsEf/l+wYgyrdicjSayZ61yQ="; - arch = "aarch64"; + arch = "arm64"; }; in { @@ -29,8 +29,20 @@ "traefik.http.routers.websecure.service" = "home-assistant"; "traefik.http.routers.websecure.rule" = "Host(`ha.home.doloro.co.uk`)"; }; + volumes = [ + "/run/dbus:/run/dbus:ro" + "/etc/localtime:/etc/localtime:ro" + ]; + ports = [ "0.0.0.0:8123:8123" ]; + # networks = [ "meow" ]; }; }; + networking.firewall = { + allowedTCPPorts = [ + 8123 + ]; + allowedUDPPortRanges = [ ]; + }; }; }; }