2021-12-02 21:47:57 +01:00
|
|
|
{
|
2021-12-08 08:13:31 +01:00
|
|
|
apply = import ./apply {};
|
2022-01-23 02:50:53 +01:00
|
|
|
apply-streaming = import ./apply { evaluator = "streaming"; };
|
2021-12-08 08:13:31 +01:00
|
|
|
apply-local = import ./apply-local {};
|
2022-01-02 01:41:35 +01:00
|
|
|
build-on-target = import ./build-on-target {};
|
2021-12-08 08:13:31 +01:00
|
|
|
exec = import ./exec {};
|
|
|
|
flakes = import ./flakes {};
|
2022-01-23 02:50:53 +01:00
|
|
|
flakes-streaming = import ./flakes { evaluator = "streaming"; };
|
2021-12-08 08:13:31 +01:00
|
|
|
parallel = import ./parallel {};
|
2022-01-28 03:48:25 +01:00
|
|
|
|
2022-06-18 09:07:16 +02:00
|
|
|
allow-apply-all = import ./allow-apply-all {};
|
|
|
|
|
2022-01-28 03:48:25 +01:00
|
|
|
apply-stable = let
|
|
|
|
test = import ./apply { pkgs = import ./nixpkgs-stable.nix; };
|
|
|
|
in test.override (old: {
|
|
|
|
name = "apply-stable";
|
|
|
|
});
|
2021-12-02 21:47:57 +01:00
|
|
|
}
|