Configured x86_64-linux to be built by hydra
This commit is contained in:
parent
95f10a7da8
commit
5150b94fbd
13
flake.nix
13
flake.nix
|
@ -89,13 +89,22 @@
|
||||||
# dependencies for architectures other than the host machine
|
# dependencies for architectures other than the host machine
|
||||||
# checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib;
|
# 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
|
inherit
|
||||||
(inputs.self)
|
(inputs.self)
|
||||||
packages
|
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
|
||||||
|
);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue