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

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

in {
  games = {
    starbound = callTest ./games/starbound.nix;
  };
  programs = {
    gnupg = callTest ./programs/gnupg;
  };
  system = {
    kernel.bfq = callTest ./system/kernel/bfq.nix;
  };
  richi235 = {
    # Currently broken
    #multipath-vpn = callTest ./richi235/multipath-vpn.nix;
  };
}