nix/docs: update stub-eval to services.hyperhive.* namespace
Trailing #615 + #620 rebase fix: `nix/docs.nix`'s stub NixOS eval still referenced the old `hyperhive.{forge,matrix}.enable` paths that #615 moved under `services.hyperhive.*`. Update to match + also force-disable the new `services.hyperhive.gateway.enable` so the docs eval doesn't spawn the gateway container as part of `nix build .#docs`. `packages.docs{,-host,-agent}` and `checks.docs` all evaluate cleanly on the post-#615 / post-#620 shape verified via `nix flake check`.
This commit is contained in:
parent
b37c353f0e
commit
34f0c11936
1 changed files with 4 additions and 3 deletions
|
|
@ -50,9 +50,10 @@ let
|
|||
# doesn't pull in heavy build inputs (matrix container, forge,
|
||||
# etc.). Options are still fully declared either way — that's
|
||||
# what nixosOptionsDoc traverses.
|
||||
services.hive-c0re.enable = lib.mkForce false;
|
||||
hyperhive.forge.enable = lib.mkForce false;
|
||||
hyperhive.matrix.enable = lib.mkForce false;
|
||||
services.hyperhive.enable = lib.mkForce false;
|
||||
services.hyperhive.forge.enable = lib.mkForce false;
|
||||
services.hyperhive.matrix.enable = lib.mkForce false;
|
||||
services.hyperhive.gateway.enable = lib.mkForce false;
|
||||
}
|
||||
)
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue