2023-10-20 00:10:59 -04:00
|
|
|
{
|
|
|
|
system ? builtins.currentSystem,
|
|
|
|
config ? { },
|
|
|
|
pkgs ? import ../../.. { inherit system config; },
|
|
|
|
handleTestOn,
|
|
|
|
}:
|
|
|
|
{
|
2024-02-20 23:42:59 +01:00
|
|
|
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;
|
|
|
|
}; };
|
2024-01-04 14:29:36 -05:00
|
|
|
lxd-to-incus = import ./lxd-to-incus.nix { inherit system pkgs; };
|
2024-03-10 23:48:22 +09:00
|
|
|
openvswitch = import ./openvswitch.nix { inherit system pkgs; };
|
2023-10-20 00:10:59 -04:00
|
|
|
preseed = import ./preseed.nix { inherit system pkgs; };
|
|
|
|
socket-activated = import ./socket-activated.nix { inherit system pkgs; };
|
2024-02-16 14:21:27 +01:00
|
|
|
ui = import ./ui.nix {inherit system pkgs;};
|
2024-01-04 14:29:36 -05:00
|
|
|
virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { inherit system pkgs; };
|
2023-10-20 00:10:59 -04:00
|
|
|
}
|