Merge pull request #32424 from oxij/nixos/related-packages

nixos: doc: implement related packages in the manual
This commit is contained in:
Arseniy Seroka
2017-12-23 03:34:58 +03:00
committed by GitHub
12 changed files with 133 additions and 26 deletions

View File

@@ -61,7 +61,12 @@ in {
options = {
programs.tmux = {
enable = mkEnableOption "<command>tmux</command> - a <command>screen</command> replacement.";
enable = mkOption {
type = types.bool;
default = false;
description = "Whenever to configure <command>tmux</command> system-wide.";
relatedPackages = [ "tmux" ];
};
aggressiveResize = mkOption {
default = false;