at 23.11-beta 434 B view raw
1{ 2 system ? builtins.currentSystem, 3 config ? { }, 4 pkgs ? import ../../.. { inherit system config; }, 5 handleTestOn, 6}: 7{ 8 container = import ./container.nix { inherit system pkgs; }; 9 preseed = import ./preseed.nix { inherit system pkgs; }; 10 socket-activated = import ./socket-activated.nix { inherit system pkgs; }; 11 virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { 12 inherit system pkgs; 13 }; 14}