From dba14bfe90949003056786d50589014fbf4233ce Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Fri, 21 Jul 2017 21:10:32 +0200 Subject: [PATCH] manual: fix man pages build on unstable NixOS --- modules/manual.nix | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/modules/manual.nix b/modules/manual.nix index 0a947914..4736726f 100644 --- a/modules/manual.nix +++ b/modules/manual.nix @@ -60,9 +60,19 @@ in }; config = mkIf config.manual.manpages.enable { - # To fix error during manpage build. - meta.doc = builtins.toFile "nothingness" ""; - home.packages = [ homeEnvironmentManPages ]; }; + + # To fix error during manpage build. + meta.doc = builtins.toFile "nothingness" '' + + this is just to make the docs compile + + + + ''; }