From 5f42e7cc90d426b1e883bb834d4776e1ff9a6fe3 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 11 Aug 2023 13:02:20 +0000 Subject: [PATCH] home: tmux: fix option name typo --- home/tmux/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/tmux/default.nix b/home/tmux/default.nix index 70f037f..e554fd0 100644 --- a/home/tmux/default.nix +++ b/home/tmux/default.nix @@ -10,7 +10,7 @@ in options.my.home.tmux = with lib; { enable = my.mkDisableOption "tmux terminal multiplexer"; - enabledPassthrough = mkEnableOption "tmux DCS passthrough sequence"; + enablePassthrough = mkEnableOption "tmux DCS passthrough sequence"; }; config.programs.tmux = lib.mkIf cfg.enable { @@ -70,7 +70,7 @@ in set -g status-left-length 16 ${ - lib.optionalString cfg.enabledPassthrough '' + lib.optionalString cfg.enablePassthrough '' # Allow any application to use the tmux DCS for passthrough set -g allow-passthrough on ''