1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00

home-environment: add option home.extraOutputsToInstall

This commit is contained in:
Robert Helgesson 2017-10-15 15:58:34 +02:00
parent ee7f2413ed
commit c07fa70d58
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -187,6 +187,17 @@ in
description = "The set of packages to appear in the user environment.";
};
home.extraOutputsToInstall = mkOption {
type = types.listOf types.str;
default = [];
example = [ "doc" "info" "devdoc" ];
description = ''
List of additional package outputs of the packages
<varname>home.packages</varname> that should be installed into
the user environment.
'';
};
home.path = mkOption {
internal = true;
description = "The derivation installing the user packages.";
@ -457,6 +468,7 @@ in
name = "home-manager-path";
paths = cfg.packages;
inherit (cfg) extraOutputsToInstall;
meta = {
description = "Environment of packages installed through home-manager";