1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 08:17:01 +00:00

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.
This commit is contained in:
Chris Hodapp 2017-05-12 00:42:34 -07:00
parent 00315bcc9e
commit b26a49ad24

View file

@ -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>.";
};