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