summary refs log tree commit diff
path: root/nixos/tests/incus/default.nix
blob: c88974605e306b1075149ac494f05a474552c482 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  system ? builtins.currentSystem,
  config ? { },
  pkgs ? import ../../.. { inherit system config; },
  handleTestOn,
}:
{
  container = import ./container.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;
  };
}