From c82d8feee16038b6407ed49b7beb0fb277152b05 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 12 Nov 2023 20:44:29 +0100 Subject: [PATCH] service/homer: fix module rename --- modules/services/homer/config.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/services/homer/config.nix b/modules/services/homer/config.nix index d239d62..375b190 100644 --- a/modules/services/homer/config.nix +++ b/modules/services/homer/config.nix @@ -37,10 +37,10 @@ type = lib.types.attrsOf (lib.types.submodule { options = { - dashboard.link = lib.mkOption { + dashboard.url = lib.mkOption { type = lib.types.nullOr lib.types.str; description = '' - Link to webapp + Url to webapp ''; example = "http://192.168.1.10:1234"; default = null; @@ -121,6 +121,6 @@ }); } ); - my.services.blackbox.http_endpoints = lib.mapAttrsToList (_key: value: value.dashboard.link) config.webapps.apps ++ [ "https://${config.networking.domain}/" ]; + my.services.blackbox.http_endpoints = lib.mapAttrsToList (_key: value: value.dashboard.url) config.webapps.apps ++ [ "https://${config.networking.domain}/" ]; }; }