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

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

in {
  aszlig.dnyarri.luks2-bcache = callTest ./aszlig/dnyarri/luks2-bcache.nix;
  aszlig.programs.flameshot = callTest aszlig/programs/flameshot.nix;
  aszlig.programs.psi = callTest aszlig/programs/psi.nix;
  games = {
    starbound = callTest ./games/starbound.nix;
  };
  profpatsch.programs.nman = callTest ./profpatsch/programs/nman.nix;
  programs = {
    gnupg = callTest ./programs/gnupg;
  };
  sandbox = callTest ./sandbox.nix;
  system = {
    kernel.bfq = callTest ./system/kernel/bfq.nix;
  };
}