diff options
| author | Chris Hodapp <clhodapp1@gmail.com> | 2017-05-12 00:42:34 -0700 |
|---|---|---|
| committer | Chris Hodapp <clhodapp1@gmail.com> | 2017-05-12 00:42:34 -0700 |
| commit | b26a49ad240b3727d17482b890c4e4f0982166e2 (patch) | |
| tree | e9a12a3c555e21165949b5a1cfdd1fa755cb5f81 /modules | |
| parent | 00315bcc9e3fc3337f4bb8c84b9aa8a39515c661 (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.nix | 2 |
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>."; }; |
