From 45ec8896f80581384dccac66608744970109a3c8 Mon Sep 17 00:00:00 2001 From: soraefir Date: Sat, 30 May 2026 22:48:44 +0200 Subject: [PATCH] fix --- modules/server/containers/apps/homepage.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/server/containers/apps/homepage.nix b/modules/server/containers/apps/homepage.nix index 3be41d9..23fbfc8 100644 --- a/modules/server/containers/apps/homepage.nix +++ b/modules/server/containers/apps/homepage.nix @@ -17,17 +17,17 @@ let services = pkgs.writers.writeYAML "services.yaml" { media = [] - ++ (if (serverCfg.containers.jellyfin) then [{ + ++ (if (serverCfg.containers?jellyfin) then [{ icon = "jellyfin.png"; href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}"; }] else []); dev = [] - ++ (if (serverCfg.containers.gitea) then [{ + ++ (if (serverCfg.containers?gitea) then [{ icon = "gitea.png"; href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}"; }] else []); cloud = [] - ++ (if (serverCfg.containers.nextcloud) then [{ + ++ (if (serverCfg.containers?nextcloud) then [{ icon = "nextcloud.png"; href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}"; }] else []);