diff --git a/modules/server/containers/apps/jellyfin.nix b/modules/server/containers/apps/jellyfin.nix index 3f46b1f..0c584a1 100644 --- a/modules/server/containers/apps/jellyfin.nix +++ b/modules/server/containers/apps/jellyfin.nix @@ -72,7 +72,7 @@ in { envFile = config.sops.secrets."CUSTOM".path; script = pkgs.writeShellScript "setup" '' JELLYFIN_URL="https://${containerCfg.subdomain}.${serverCfg.hostDomain}" - until ${pkgs.curl} -sf "$JELLYFIN_URL/health" > /dev/null 2>&1; do + until ${pkgs.curl}/bin/curl -sf "$JELLYFIN_URL/health" > /dev/null 2>&1; do sleep 5 done echo "Jellyfin is up. Sleeping for 20 seconds..."