Update Hydra jobs

This commit is contained in:
Yannik Rödel 2022-02-28 16:56:10 +01:00
parent c5b5d8d8f7
commit c9233f96ca

View file

@ -4,8 +4,8 @@
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
outputs = {self, nixpkgs, flake-utils }: let
base = flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
@ -92,6 +92,10 @@
hydraJobs = {
container = packages.container;
};
}
);
});
in (base // {
hydraJobs.x86_64-linux = {
inherit (base.packages.x86_64-linux) container;
};
});
}