hydra: add all aarch64 machines to hydra
This commit is contained in:
parent
c351d2197c
commit
8ff6c2f920
1 changed files with 15 additions and 3 deletions
18
flake.nix
18
flake.nix
|
@ -329,9 +329,21 @@
|
||||||
};
|
};
|
||||||
} // self.colmenaHive.nodes;
|
} // self.colmenaHive.nodes;
|
||||||
|
|
||||||
hydraJobs = {
|
hydraJobs =
|
||||||
agate = self.nixosConfigurations.agate.config.system.build.toplevel;
|
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 (
|
// flake-utils.lib.eachDefaultSystem (
|
||||||
system:
|
system:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue