From 1748360922e44c099364c1ad7a8ae71ba43bd383 Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Tue, 17 Mar 2026 20:55:40 +0100 Subject: [PATCH] Add z.ai API key to OpenClaw secrets Co-Authored-By: Claude Opus 4.6 --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index 028751e..bf4c0da 100644 --- a/configuration.nix +++ b/configuration.nix @@ -97,11 +97,13 @@ # OpenClaw secrets sops.secrets.openclaw_discord_token = { }; sops.secrets.openclaw_openai_api_key = { }; + sops.secrets.openclaw_zai_api_key = { }; sops.templates."openclaw.env" = { content = '' DISCORD_TOKEN=${config.sops.placeholder.openclaw_discord_token} OPENAI_API_KEY=${config.sops.placeholder.openclaw_openai_api_key} + ZAI_API_KEY=${config.sops.placeholder.openclaw_zai_api_key} ''; }; }