nixpkgs/nixos/tests/lxd/default.nix

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

13 lines
448 B
Nix
Raw Normal View History

{
system ? builtins.currentSystem,
config ? {},
pkgs ? import ../../.. {inherit system config;},
handleTestOn,
}: {
container = import ./container.nix {inherit system pkgs;};
nftables = import ./nftables.nix {inherit system pkgs;};
2023-09-04 15:58:53 +00:00
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; };
}