mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
21 lines
835 B
Nix
21 lines
835 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
config ? { },
|
|
pkgs ? import ../../.. { inherit system config; },
|
|
handleTestOn,
|
|
}:
|
|
{
|
|
container-old-init = import ./container.nix { inherit system pkgs; };
|
|
container-new-init = import ./container.nix { inherit system pkgs; extra = {
|
|
# Enable new systemd init
|
|
boot.initrd.systemd.enable = true;
|
|
}; };
|
|
lxd-to-incus = import ./lxd-to-incus.nix { inherit system pkgs; };
|
|
openvswitch = import ./openvswitch.nix { inherit system pkgs; };
|
|
preseed = import ./preseed.nix { inherit system pkgs; };
|
|
socket-activated = import ./socket-activated.nix { inherit system pkgs; };
|
|
storage = import ./storage.nix { inherit system pkgs; };
|
|
ui = import ./ui.nix {inherit system pkgs;};
|
|
virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { inherit system pkgs; };
|
|
}
|