This commit is contained in:
2026-02-11 14:19:39 +00:00
parent 5340ec1756
commit 51293382e8

View File

@@ -16,7 +16,7 @@
finalImageName = "homeassistant/home-assistant"; finalImageName = "homeassistant/home-assistant";
finalImageTag = "latest"; finalImageTag = "latest";
sha256 = "sha256-fSQ3luRSFHiWP0qDzsiZsEf/l+wYgyrdicjSayZ61yQ="; sha256 = "sha256-fSQ3luRSFHiWP0qDzsiZsEf/l+wYgyrdicjSayZ61yQ=";
arch = "aarch64"; arch = "arm64";
}; };
in in
{ {
@@ -29,8 +29,20 @@
"traefik.http.routers.websecure.service" = "home-assistant"; "traefik.http.routers.websecure.service" = "home-assistant";
"traefik.http.routers.websecure.rule" = "Host(`ha.home.doloro.co.uk`)"; "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 = [ ];
};
}; };
}; };
} }