summary refs log tree commit diff
path: root/nixos/tests/lxd/default.nix
blob: 2e34907d79369ca9cb5db3f282380aa05620eab4 (plain) (blame)
1
2
3
4
5
6
7
8
9
{
  system ? builtins.currentSystem,
  config ? {},
  pkgs ? import ../../.. {inherit system config;},
}: {
  container = import ./container.nix {inherit system pkgs;};
  nftables = import ./nftables.nix {inherit system pkgs;};
  ui = import ./ui.nix {inherit system pkgs;};
}