From 2f0c7750de2a1cfefd943509b4c411c9a7f1c243 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Tue, 28 Apr 2026 09:55:18 +0200 Subject: [PATCH] Add mouse support to tmux --- systems/modules/home/programs/tmux.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/modules/home/programs/tmux.nix b/systems/modules/home/programs/tmux.nix index 7b16262..faf4fe8 100644 --- a/systems/modules/home/programs/tmux.nix +++ b/systems/modules/home/programs/tmux.nix @@ -1,5 +1,8 @@ { pkgs, ... }: { - programs.tmux.enable = true; + programs.tmux = { + enable = true; + mouse = true; + }; }