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"`.