summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/tmux.nix
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2017-12-07 21:26:36 +0000
committerJan Malakhovski <oxij@oxij.org>2017-12-07 21:27:28 +0000
commitf56b5824ad06cd03ebd1d1b9cf11a8db30dccb09 (patch)
tree53dc70bb5af6b9832c57ac866f999b181c07c413 /nixos/modules/programs/tmux.nix
parent67ec6371d5d38224f10432dcf4d10eacd85cc13b (diff)
nixos/tmux: use related packages
Diffstat (limited to 'nixos/modules/programs/tmux.nix')
-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;