Files
hydra/t/jobs/flake-hydraJobs/flake.nix
2025-11-11 15:39:23 +01:00

12 lines
345 B
Nix

{
outputs = { self, ... }:
let
systems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f: builtins.listToAttrs (map (system: { name = system; value = f system; }) systems);
in {
hydraJobs = forAllSystems (system:
import ./basic.nix { inherit system; }
);
};
}