9b81fef485
This reverts commit 42bfb73a06
.
For some reason, the iso is built every time, even when it doesn't
change, eating up all the space on cachix.
25 lines
513 B
Nix
25 lines
513 B
Nix
let
|
|
inherit (default.inputs.nixos.lib) recurseIntoAttrs;
|
|
|
|
default = (import "${../.}/compat").defaultNix;
|
|
|
|
packages = import ../default.nix;
|
|
|
|
shell = recurseIntoAttrs {
|
|
inherit (default.devShell)
|
|
i686-linux x86_64-linux aarch64-linux;
|
|
};
|
|
|
|
ci = recurseIntoAttrs {
|
|
nixos = default.nixosConfigurations.NixOS.config.system.build.ci;
|
|
};
|
|
in
|
|
{
|
|
inherit shell ci;
|
|
# platforms supported by our hercules-ci agent
|
|
inherit (packages)
|
|
i686-linux
|
|
x86_64-linux
|
|
aarch64-linux
|
|
;
|
|
}
|