Configured x86_64-linux to be built by hydra

This commit is contained in:
Alejandro Angulo 2024-03-02 17:48:28 -08:00
parent 95f10a7da8
commit 5150b94fbd
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6

View file

@ -89,13 +89,22 @@
# dependencies for architectures other than the host machine
# checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib;
hydraJobs = {
hydraJobs = let
systems_to_build = [
"gospel"
"node"
"carbon"
];
in {
inherit
(inputs.self)
packages
;
node = inputs.self.nixosConfigurations.node.config.system.build.toplevel;
systems = inputs.nixpkgs.lib.attrsets.genAttrs systems_to_build (
name:
inputs.self.nixosConfigurations."${name}".config.system.build.toplevel
);
};
};
}