From 5bd536014acfea26d015bc2c09da9f11374fff76 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Fri, 7 Aug 2026 00:02:58 -0300 Subject: [PATCH] feat(hydra): build systemConfigs as hosts jobs Fold outputs.systemConfigs into the hydra 'hosts' jobs alongside nixosConfigurations, so Hydra builds mgc's system-manager generation as hosts.mgc (matching the hosts. convention the auto-upgrade uses). Assisted-by: pi (claude-opus-4-8) --- hydra.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hydra.nix b/hydra.nix index 66d11773..c599fc5a 100644 --- a/hydra.nix +++ b/hydra.nix @@ -16,6 +16,8 @@ pkgs; in { pkgs = lib.mapAttrs filterValidPkgs outputs.packages; - hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) outputs.nixosConfigurations; + hosts = + lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) outputs.nixosConfigurations + // outputs.systemConfigs; homes = lib.mapAttrs (_: cfg: cfg.activationPackage) outputs.homeConfigurations; }