nixpkgs/nixos/tests/incus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1007 B
Nix
Raw Permalink Normal View History

2023-10-20 07:10:59 +03:00
{
system ? builtins.currentSystem,
config ? { },
pkgs ? import ../../.. { inherit system config; },
handleTestOn,
incus ? pkgs.incus-lts,
2023-10-20 07:10:59 +03:00
}:
{
2024-03-19 06:02:30 +03:00
container-legacy-init = import ./container.nix {
name = "container-legacy-init";
inherit incus system pkgs;
2024-03-19 06:02:30 +03:00
};
container-systemd-init = import ./container.nix {
name = "container-systemd-init";
inherit incus system pkgs;
2024-03-19 06:02:30 +03:00
extra = {
boot.initrd.systemd.enable = true;
};
};
incusd-options = import ./incusd-options.nix { inherit incus system pkgs; };
lxd-to-incus = import ./lxd-to-incus.nix { inherit incus system pkgs; };
openvswitch = import ./openvswitch.nix { inherit incus system pkgs; };
socket-activated = import ./socket-activated.nix { inherit incus system pkgs; };
storage = import ./storage.nix { inherit incus system pkgs; };
ui = import ./ui.nix { inherit incus system pkgs; };
virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix {
inherit incus system pkgs;
};
2023-10-20 07:10:59 +03:00
}