home: tmux: fix option name typo
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2023-08-11 13:02:20 +00:00
parent 7ace62da72
commit 5f42e7cc90

View file

@ -10,7 +10,7 @@ in
options.my.home.tmux = with lib; { options.my.home.tmux = with lib; {
enable = my.mkDisableOption "tmux terminal multiplexer"; 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 { config.programs.tmux = lib.mkIf cfg.enable {
@ -70,7 +70,7 @@ in
set -g status-left-length 16 set -g status-left-length 16
${ ${
lib.optionalString cfg.enabledPassthrough '' lib.optionalString cfg.enablePassthrough ''
# Allow any application to use the tmux DCS for passthrough # Allow any application to use the tmux DCS for passthrough
set -g allow-passthrough on set -g allow-passthrough on
'' ''