home: tmux: fix option name typo
ci/woodpecker/push/check Pipeline was successful Details

This commit is contained in:
Bruno BELANYI 2023-08-11 13:02:20 +00:00
parent 7ace62da72
commit 5f42e7cc90
1 changed files with 2 additions and 2 deletions

View File

@ -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
''