at 25.11-pre 461 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 nftables = import ./nftables.nix { inherit system pkgs; }; 10 preseed = import ./preseed.nix { inherit system pkgs; }; 11 ui = import ./ui.nix { inherit system pkgs; }; 12 virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { inherit system pkgs; }; 13}