about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/incus/default.nix
blob: 26e8a4ac4c7724653355d93799e00d606da28bec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  system ? builtins.currentSystem,
  config ? { },
  pkgs ? import ../../.. { inherit system config; },
  handleTestOn,
}:
{
  container = import ./container.nix { inherit system pkgs; };
  lxd-to-incus = import ./lxd-to-incus.nix { inherit system pkgs; };
  preseed = import ./preseed.nix { inherit system pkgs; };
  socket-activated = import ./socket-activated.nix { inherit system pkgs; };
  virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { inherit system pkgs; };
}