summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/default.nix b/tests/default.nix
index 3118624..496a935 100644
--- a/tests/default.nix
+++ b/tests/default.nix
@@ -20,6 +20,8 @@ let
);
allTests = lib.genAttrs (allTestFilenames) (test: import (./. + "/${test}.nix") { inherit makeDiskoTest; }) //
- evalTest "lvm-luks-example" ../example/config.nix;
+ evalTest "lvm-luks-example" ../example/config.nix // {
+ standalone = (pkgs.nixos [ ../example/stand-alone/configuration.nix ]).config.system.build.toplevel;
+ };
in
allTests