From e00ed1e7c4c260751618a25db3a8cd2d6deb4a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sat, 10 Jan 2026 13:21:13 +0100 Subject: [PATCH] feat(home-assistant): add ingresses for Matter Server & OTBR --- services/home-assistant/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/services/home-assistant/default.nix b/services/home-assistant/default.nix index bb3f430..2056514 100644 --- a/services/home-assistant/default.nix +++ b/services/home-assistant/default.nix @@ -126,6 +126,20 @@ in conversation = { intents = { }; }; + ingress = { + "matter" = { + title = "Matter Server"; + icon = "mdi:home-automation"; + ui_mode = "toolbar"; + url = "http://127.0.0.1:${toString config.services.matter-server.port}/"; + }; + "otbr" = { + title = "OpenThread Border Router"; + icon = "mdi:home-automation"; + ui_mode = "toolbar"; + url = "http://127.0.0.1:${toString config.services.openthread-border-router.web.listenPort}/"; + }; + }; }; # configWritable = true; # doesn't work atm };