diff --git a/modules/server/containers/apps/homepage.nix b/modules/server/containers/apps/homepage.nix index 63366b7..95fa082 100644 --- a/modules/server/containers/apps/homepage.nix +++ b/modules/server/containers/apps/homepage.nix @@ -15,18 +15,18 @@ let # }; }; - services = pkgs.writers.writeYAML "services.yaml" {[ - {Media = [{ - } // lib.optionalAttrs (serverCfg.containers?jellyfin) { - "Jellyfin"={ + services = pkgs.writers.writeYAML "services.yaml" [ + {Media = [ + {} // lib.optionalAttrs (serverCfg.containers?jellyfin) { + Jellyfin={ icon = "jellyfin.png"; href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}"; }; } ];} - {Dev = [{ - } // lib.optionalAttrs (serverCfg.containers?gitea) { - "Gitea"={ + {Dev = [ + {} // lib.optionalAttrs (serverCfg.containers?gitea) { + Gitea={ icon = "gitea.png"; href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}"; }; @@ -37,7 +37,7 @@ let # icon = "nextcloud.png"; # href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}"; # }] else []); - ]}; + ]; in { sops = false; db = false;