mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
12 lines
448 B
Nix
12 lines
448 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
config ? {},
|
|
pkgs ? import ../../.. {inherit system config;},
|
|
handleTestOn,
|
|
}: {
|
|
container = import ./container.nix {inherit system pkgs;};
|
|
nftables = import ./nftables.nix {inherit system pkgs;};
|
|
preseed = import ./preseed.nix {inherit system pkgs;};
|
|
ui = import ./ui.nix {inherit system pkgs;};
|
|
virtual-machine = handleTestOn ["x86_64-linux"] ./virtual-machine.nix { inherit system pkgs; };
|
|
}
|