From b26a49ad240b3727d17482b890c4e4f0982166e2 Mon Sep 17 00:00:00 2001 From: Chris Hodapp Date: Fri, 12 May 2017 00:42:34 -0700 Subject: [PATCH] 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. --- modules/environment/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 /run/current-system/sw."; };