From 3468282879673de0fe0b9d09e37231a0b793eedf Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 25 Jun 2023 22:16:36 +0200 Subject: [PATCH] service/blackbox: add dashboard as well --- modules/services/homer/config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/homer/config.nix b/modules/services/homer/config.nix index c456ddd..37ae1dd 100644 --- a/modules/services/homer/config.nix +++ b/modules/services/homer/config.nix @@ -124,6 +124,6 @@ }); } ); - my.services.blackbox.http_endpoints = lib.mapAttrsToList (key: value: value.dashboard.link) config.webapps.apps; + my.services.blackbox.http_endpoints = lib.mapAttrsToList (key: value: value.dashboard.link) config.webapps.apps ++ [ "https://${config.networking.domain}/" ]; }; }