about summary refs log tree commit diff
path: root/tests/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/default.nix')
-rw-r--r--tests/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/default.nix b/tests/default.nix
new file mode 100644
index 00000000..edc022ad
--- /dev/null
+++ b/tests/default.nix
@@ -0,0 +1,24 @@
+{ 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.psi = callTest aszlig/programs/psi.nix;
+  games = {
+    starbound = callTest ./games/starbound.nix;
+  };
+  programs = {
+    gnupg = callTest ./programs/gnupg;
+  };
+  sandbox = callTest ./sandbox.nix;
+  system = {
+    kernel.bfq = callTest ./system/kernel/bfq.nix;
+  };
+}