# Glue: point the matrix container's `swarm-matrix-ctl` at the bao leaf minted for it. # # ONE PAIRING PER FILE — matrix-ctl ← bao, and nothing else. Deleting this leaves a # binary that takes operator-provided certificate paths, which is what any # deployment not minting its own already does. # # ⚠️ The minting is NOT here. ./glue-bao-tls.nix holds the CA and signs the # leaf, because the thing that owns a private key owns issuing from it. What # belongs here is the pairing: which paths matrix-ctl presents. # # ⚠️ Gated on the leaf existing, not on the store being enabled — the same rule # ./glue-secret-publisher-bao-identity.nix states, and it bites harder here: a # swarm runs ONE homeserver, so the hive hosting it is the one least likely to # also be the hive hosting the store. # # Everything is `mkDefault`. An operator naming their own paths wins. { lib, config, ... }: let hyperhiveCfg = config.services.hyperhive; deployCfg = hyperhiveCfg.deploy; baoDeploy = deployCfg.bao; # Where ./glue-bao-tls.nix puts the leaves, derived from the reader's own path # rather than repeating that file's directory literal: an operator who moves # the PKI moves both, and the two cannot drift apart. haveMintedPki = baoDeploy.clientCertFile != null; pkiDir = if haveMintedPki then builtins.dirOf baoDeploy.clientCertFile else null; in { config = lib.mkIf (hyperhiveCfg.enable && deployCfg.matrix.enable && haveMintedPki) { services.hyperhive.deploy.matrix = { ctlBaoClientCertFile = lib.mkDefault "${pkiDir}/matrix-ctl.pem"; ctlBaoClientKeyFile = lib.mkDefault "${pkiDir}/matrix-ctl-key.pem"; }; }; }