15 lines
434 B
Nix
15 lines
434 B
Nix
|
{
|
||
|
system ? builtins.currentSystem,
|
||
|
config ? { },
|
||
|
pkgs ? import ../../.. { inherit system config; },
|
||
|
handleTestOn,
|
||
|
}:
|
||
|
{
|
||
|
container = import ./container.nix { inherit system pkgs; };
|
||
|
preseed = import ./preseed.nix { inherit system pkgs; };
|
||
|
socket-activated = import ./socket-activated.nix { inherit system pkgs; };
|
||
|
virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix {
|
||
|
inherit system pkgs;
|
||
|
};
|
||
|
}
|