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 []);