From 6354a030f00f461b74c89efc0766ce97dae95d75 Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Thu, 19 Mar 2026 14:32:05 +0100 Subject: [PATCH] feat(openclaw): add Forgejo integration secrets to SOPS template --- configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configuration.nix b/configuration.nix index 6fae47c..30039e5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -125,12 +125,18 @@ sops.secrets.openclaw_discord_token = { }; sops.secrets.openclaw_zai_api_key = { }; sops.secrets.openclaw_brave_api_key = { }; + sops.secrets.forgejo_url = { }; + sops.secrets.forgejo_token = { }; + sops.secrets.forgejo_user = { }; sops.templates."openclaw.env" = { content = '' DISCORD_TOKEN=${config.sops.placeholder.openclaw_discord_token} ZAI_API_KEY=${config.sops.placeholder.openclaw_zai_api_key} BRAVE_API_KEY=${config.sops.placeholder.openclaw_brave_api_key} + FORGEJO_URL=${config.sops.placeholder.forgejo_url} + FORGEJO_TOKEN=${config.sops.placeholder.forgejo_token} + FORGEJO_USER=${config.sops.placeholder.forgejo_user} ''; };