about summary refs log tree commit diff
path: root/tests/default.nix
blob: 775b31659b4e565f464f63c498c55cdacc6c05c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ system ? builtins.currentSystem, ... }:

let
  callTest = path: import ./make-test.nix (import path) {
    inherit system;
  };

in {
  aszlig = {
    i3 = callTest ./aszlig/i3.nix;
  };
  labnet = {
    heinrich = callTest ./labnet/heinrich.nix;
  };
  richi235 = {
    multipath-vpn = callTest ./richi235/multipath-vpn.nix;
  };
}