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:
parent
00315bcc9e
commit
b26a49ad24
1 changed files with 1 additions and 1 deletions
|
@ -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>.";
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue