1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Merge pull request #28 from clhodapp/fix/man-output

Default outputs should include "man"
This commit is contained in:
Daiderd Jordan 2017-05-12 21:38:41 +02:00 committed by GitHub
commit 90fd844e73

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