hydra: add all aarch64 machines to hydra

This commit is contained in:
xinyangli 2025-05-05 23:22:24 +08:00
parent c351d2197c
commit 8ff6c2f920
No known key found for this signature in database

View file

@ -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: