From a6384d587d021465d48ddcfa4973260b2e2bdc4f Mon Sep 17 00:00:00 2001 From: harry123 Date: Sat, 10 May 2025 10:53:23 +0200 Subject: [PATCH] fix: name confusion --- hosts/sisyphe/features/services/homelab-dashboard.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/hosts/sisyphe/features/services/homelab-dashboard.nix b/hosts/sisyphe/features/services/homelab-dashboard.nix index 7c7c9f4..1a21d79 100644 --- a/hosts/sisyphe/features/services/homelab-dashboard.nix +++ b/hosts/sisyphe/features/services/homelab-dashboard.nix @@ -9,14 +9,10 @@ with lib; let cfg = config.homepage-dashboard; - ip = cfg.baseURL; + ip = "192.168.1.177"; in { options = { - homepage-dashboard.baseURL = mkOption { - type = types.str; - default = "192.168.1.177"; - }; homepage-dashboard.proxmoxVEIp = mkOption { type = types.str; default = "192.168.1.10"; @@ -30,7 +26,7 @@ in default = "192.168.1.25"; }; - baseUrl = mkOption { + homepage-dashboard.baseUrl = mkOption { type = types.str; default = "rougebordeaux.xyz"; };