programs.tmux.mouse does not exist in the NixOS module; use 'set -g mouse on' in extraConfig instead. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
223 B
Nix
15 lines
223 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
escapeTime = 0;
|
|
terminal = "tmux-256color";
|
|
keyMode = "vi";
|
|
extraConfig = ''
|
|
set -g mouse on
|
|
set -g focus-events on
|
|
'';
|
|
};
|
|
}
|