python312Packages.dissect-extfs: 3.11 -> 3.12
[NixPkgs.git] / nixos / tests / incus / default.nix
blobc33bf1600f27a139aff1ebbc17a79d4837edfa91
2   system ? builtins.currentSystem,
3   config ? { },
4   pkgs ? import ../../.. { inherit system config; },
5   handleTestOn,
6   incus ? pkgs.incus-lts,
7 }:
9   container-legacy-init = import ./container.nix {
10     name = "container-legacy-init";
11     inherit incus system pkgs;
12   };
13   container-systemd-init = import ./container.nix {
14     name = "container-systemd-init";
15     inherit incus system pkgs;
16     extra = {
17       boot.initrd.systemd.enable = true;
18     };
19   };
20   incusd-options = import ./incusd-options.nix { inherit incus system pkgs; };
21   lxd-to-incus = import ./lxd-to-incus.nix { inherit incus system pkgs; };
22   openvswitch = import ./openvswitch.nix { inherit incus system pkgs; };
23   socket-activated = import ./socket-activated.nix { inherit incus system pkgs; };
24   storage = import ./storage.nix { inherit incus system pkgs; };
25   ui = import ./ui.nix { inherit incus system pkgs; };
26   virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix {
27     inherit incus system pkgs;
28   };