From b46d9139df3dc4b89214b5e5eee3fba894e4da76 Mon Sep 17 00:00:00 2001 From: soraefir Date: Sun, 31 May 2026 00:01:45 +0200 Subject: [PATCH] more services --- modules/server/containers/apps/homepage.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/modules/server/containers/apps/homepage.nix b/modules/server/containers/apps/homepage.nix index e679fe5..b8e86d7 100644 --- a/modules/server/containers/apps/homepage.nix +++ b/modules/server/containers/apps/homepage.nix @@ -52,6 +52,12 @@ let }; }; }) + (lib.optional (serverCfg.containers?ethercalc) { + Ethercalc={ + icon = "ethercalc.png"; + href = "https://${serverCfg.containers.ethercalc.subdomain}.${serverCfg.domain}"; + }; + }) (lib.optional (serverCfg.containers?etherpad) { Etherpad={ icon = "etherpad.png"; @@ -80,6 +86,18 @@ let href = "https://${serverCfg.containers.influx.subdomain}.${serverCfg.domain}"; }; }) + (lib.optional (serverCfg.containers?handbrake) { + Handbrake={ + icon = "handbrake.png"; + href = "https://${serverCfg.containers.handbrake.subdomain}.${serverCfg.domain}"; + }; + }) + (lib.optional (serverCfg.containers?transmission) { + Transmission={ + icon = "transmission.png"; + href = "https://${serverCfg.containers.transmission.subdomain}.${serverCfg.domain}/transmission"; + }; + }) ];} ]; in {