From 1b4e9d0e2bae34a3c9a4600f3bd53d7b49a9a89d Mon Sep 17 00:00:00 2001 From: damocles Date: Mon, 1 Jun 2026 16:59:28 +0200 Subject: [PATCH] rename(162): nixosConfigurations.manager -> root, hive-m1nd -> hive-root --- hive-c0re/src/meta.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hive-c0re/src/meta.rs b/hive-c0re/src/meta.rs index 43fe7bf3..d9eb797f 100644 --- a/hive-c0re/src/meta.rs +++ b/hive-c0re/src/meta.rs @@ -448,10 +448,10 @@ where out.push_str( r#" let base = if isManager - then hyperhive.nixosConfigurations.manager + then hyperhive.nixosConfigurations.root else hyperhive.nixosConfigurations.agent-base; input = inputs."agent-${name}"; - service = if isManager then "hive-m1nd" else "hive-ag3nt"; + service = if isManager then "hive-root" else "hive-ag3nt"; parentEnv = if parent == null then {} else { HIVE_PARENT = parent; }; toolGroupsEnv = if toolGroups == null then {} else { HIVE_TOOL_GROUPS = toolGroups; }; in @@ -461,7 +461,7 @@ where { # The harness service inside the container runs as a # non-root unix user named after the agent (`damocles`, - # `iris`, `hm1nd`, …). UID auto-assigned by NixOS; the + # `iris`, `root`, …). UID auto-assigned by NixOS; the # per-agent override here is what makes # `hyperhive.user.name` match the agent's identity # instead of the harness-base default of `"agent"`.