mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
14 lines
497 B
Nix
14 lines
497 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
config ? { },
|
|
pkgs ? import ../../.. { inherit system config; },
|
|
handleTestOn,
|
|
}:
|
|
{
|
|
container = import ./container.nix { inherit system pkgs; };
|
|
lxd-to-incus = import ./lxd-to-incus.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; };
|
|
}
|