From da655d31c854f1d8ef00c36df2d5bd0c248a383e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Thu, 14 May 2026 23:11:57 +0200 Subject: [PATCH] manager: /etc/gitconfig so commits in /agents work out of the box --- nix/templates/manager.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nix/templates/manager.nix b/nix/templates/manager.nix index b191295..3bf9e87 100644 --- a/nix/templates/manager.nix +++ b/nix/templates/manager.nix @@ -11,6 +11,14 @@ coreutils-full ]; + environment.etc."gitconfig".text = '' + [user] + name = hm1nd + email = hm1nd@hyperhive + [init] + defaultBranch = main + ''; + systemd.services.hive-m1nd = { description = "hive-m1nd manager harness"; wantedBy = [ "multi-user.target" ];