summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2017-12-23 03:34:58 +0300
committerGitHub <noreply@github.com>2017-12-23 03:34:58 +0300
commit36e02645eba174dd6a76aaebc62b5095bb7005a9 (patch)
tree4d37dda40510984edef81b7d15567e8e6ece39a1 /nixos/modules/programs
parentd0bb0a2c538dbe84189da00848dd1f8d5e0deda3 (diff)
parent3be0e1bd728f2500f1e8543ebc121d3ba9dabb4d (diff)
downloadnixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.tar
nixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.tar.gz
nixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.tar.bz2
nixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.tar.lz
nixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.tar.xz
nixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.tar.zst
nixlib-36e02645eba174dd6a76aaebc62b5095bb7005a9.zip
Merge pull request #32424 from oxij/nixos/related-packages
nixos: doc: implement related packages in the manual
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/tmux.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/programs/tmux.nix b/nixos/modules/programs/tmux.nix
index ed1d88a420a2..967001845f02 100644
--- a/nixos/modules/programs/tmux.nix
+++ b/nixos/modules/programs/tmux.nix
@@ -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;