From 1e0ee73c1380a5fdf56bed23fd3aa10482bee90d Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 7 Jul 2024 21:07:06 -0400 Subject: [PATCH] hosts? Signed-off-by: ahuston-0 --- hydra/jobs.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hydra/jobs.nix b/hydra/jobs.nix index 66470c4..7b1cf93 100644 --- a/hydra/jobs.nix +++ b/hydra/jobs.nix @@ -5,10 +5,13 @@ let getCfg = _: cfg: cfg.config.system.build.toplevel; in -{ +rec { inherit (outputs) formatter devShells checks; + + machines = mapAttrsToList getCfg outputs.nixosConfigurations; + hosts = pkgs.releaseTools.aggregate { name = "hosts"; - constituents = mapAttrsToList getCfg outputs.nixosConfigurations; + constituents = machines; }; }