From 193b8c011564f4015db575568900e9508ba96cf2 Mon Sep 17 00:00:00 2001 From: m3ta-chiron Date: Mon, 27 Apr 2026 19:52:11 +0200 Subject: [PATCH] fix(git-identity): use existing gitea SSH key for agent commits The m3ta-chiron SSH key was not accepted by Gitea. Using the existing gitea key instead for push authentication. --- home/coding/agents/agents.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/coding/agents/agents.nix b/home/coding/agents/agents.nix index 19d511f..28c1bf2 100644 --- a/home/coding/agents/agents.nix +++ b/home/coding/agents/agents.nix @@ -10,11 +10,12 @@ ... }: { # Agent Git Identity configuration + # Note: Uses existing gitea SSH key (m3tam3re identity) for push auth coding.agents.gitIdentity = { enable = true; name = "m3ta-chiron"; email = "m3ta-chiron@agentmail.to"; - sshKey = "/home/m3tam3re/.ssh/m3ta-chiron"; + sshKey = "/home/m3tam3re/.ssh/gitea"; }; imports = [