forked from DGNum/colmena
14 lines
472 B
Nix
14 lines
472 B
Nix
{
|
|
apply = import ./apply {};
|
|
apply-streaming = import ./apply { evaluator = "streaming"; };
|
|
apply-local = import ./apply-local {};
|
|
build-on-target = import ./build-on-target {};
|
|
exec = import ./exec {};
|
|
flakes = import ./flakes {};
|
|
flakes-streaming = import ./flakes { evaluator = "streaming"; };
|
|
parallel = import ./parallel {};
|
|
|
|
allow-apply-all = import ./allow-apply-all {};
|
|
|
|
apply-stable = import ./apply { pkgs = import ./nixpkgs-stable.nix; };
|
|
}
|