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