From 8ff6c2f9201098651fb319d2c2c1a16c60c79925 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Mon, 5 May 2025 23:22:24 +0800 Subject: [PATCH] hydra: add all aarch64 machines to hydra --- flake.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 2c90f9f..dc2c5c2 100644 --- a/flake.nix +++ b/flake.nix @@ -329,9 +329,21 @@ }; } // self.colmenaHive.nodes; - hydraJobs = { - agate = self.nixosConfigurations.agate.config.system.build.toplevel; - }; + hydraJobs = + let + includeHosts = [ + "agate" + "raspite" + "baryte" + "osmium" + ]; + in + builtins.listToAttrs ( + map (h: { + name = h; + value = self.nixosConfigurations.${h}.config.system.build.toplevel; + }) includeHosts + ); } // flake-utils.lib.eachDefaultSystem ( system: