feat(nix): add tmux.conf with mouse scrolling enabled

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Harald Hoyer 2026-02-13 12:44:32 +01:00
parent 170189e56e
commit 3ee0f64c20

View file

@ -14,5 +14,10 @@ in
enable = mkEnableOption "Tmux"; enable = mkEnableOption "Tmux";
}; };
config = mkIf cfg.enable { home.packages = with pkgs; [ tmux ]; }; config = mkIf cfg.enable {
home.packages = with pkgs; [ tmux ];
home.file.".tmux.conf".text = ''
set -g mouse on
'';
};
} }