summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorChris Hodapp <clhodapp1@gmail.com>2017-05-12 00:42:34 -0700
committerChris Hodapp <clhodapp1@gmail.com>2017-05-12 00:42:34 -0700
commitb26a49ad240b3727d17482b890c4e4f0982166e2 (patch)
treee9a12a3c555e21165949b5a1cfdd1fa755cb5f81 /modules
parent00315bcc9e3fc3337f4bb8c84b9aa8a39515c661 (diff)
Default outputs should include "man"
If you don't include "man", basic nix commands (e.g. nix-env) basically have broken help/usage text, since they delegate to calling man.
Diffstat (limited to 'modules')
-rw-r--r--modules/environment/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/environment/default.nix b/modules/environment/default.nix
index 2e3d921..4bcf565 100644
--- a/modules/environment/default.nix
+++ b/modules/environment/default.nix
@@ -51,7 +51,7 @@ in {
environment.extraOutputsToInstall = mkOption {
type = types.listOf types.str;
- default = [ ];
+ default = [ "man" ];
example = [ "doc" "info" "devdoc" ];
description = "List of additional package outputs to be symlinked into <filename>/run/current-system/sw</filename>.";
};