From edc3bede6e7269b91b41c448b7835e91ea8ae7af Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Fri, 12 Jun 2020 21:59:51 +0200 Subject: [PATCH] tests: avoid dependency on documentation --- tests/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/default.nix b/tests/default.nix index e3d50511a..af9159928 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -15,12 +15,16 @@ let inherit lib pkgs; check = false; } ++ [ - # Fix impurities. Without these some of the user's environment - # will leak into the tests through `builtins.getEnv`. { + # Fix impurities. Without these some of the user's environment + # will leak into the tests through `builtins.getEnv`. xdg.enable = true; home.username = "hm-user"; home.homeDirectory = "/home/hm-user"; + + # Avoid including documentation since this will cause + # unnecessary rebuilds of the tests. + manual.manpages.enable = false; } ];