diff --git a/modules/server/containers/apps/homepage.nix b/modules/server/containers/apps/homepage.nix index 23fbfc8..1b89e93 100644 --- a/modules/server/containers/apps/homepage.nix +++ b/modules/server/containers/apps/homepage.nix @@ -16,21 +16,21 @@ let }; services = pkgs.writers.writeYAML "services.yaml" { - media = [] + Media = [] ++ (if (serverCfg.containers?jellyfin) then [{ icon = "jellyfin.png"; href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}"; }] else []); - dev = [] + Dev = [] ++ (if (serverCfg.containers?gitea) then [{ icon = "gitea.png"; href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}"; }] else []); - cloud = [] - ++ (if (serverCfg.containers?nextcloud) then [{ - icon = "nextcloud.png"; - href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}"; - }] else []); + # cloud = [] + # ++ (if (serverCfg.containers?nextcloud) then [{ + # icon = "nextcloud.png"; + # href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}"; + # }] else []); }; in { sops = false;