feat(agents): add gitIdentity config and git-identity rule

- coding.agents.gitIdentity enabled with m3ta-chiron identity
- coding.agents.pi.codingRules.concerns includes 'git-identity'
- Uses feature/agent-git-identity branches for m3ta-nixpkgs and agents
This commit is contained in:
m3tm3re
2026-04-27 13:24:34 +02:00
parent 936eb13794
commit a427f319d4
4 changed files with 23 additions and 13 deletions

View File

@@ -9,6 +9,14 @@
videoDrivers ? [],
...
}: {
# Agent Git Identity configuration
coding.agents.gitIdentity = {
enable = true;
name = "m3ta-chiron";
email = "m3ta-chiron@agentmail.to";
sshKey = "/home/m3tam3re/.ssh/m3ta-chiron";
};
imports = [
# OpenCode and Pi agent configurations
./opencode.nix

View File

@@ -23,6 +23,7 @@
"documentation" # Documentation standards
"testing" # Testing guidelines (Arrange-Act-Assert)
"git-workflow" # Conventional commits, branch naming
"git-identity" # Git identity configuration for agents
"project-structure" # Project layout conventions
];