feat(nix): add tmux.conf with mouse scrolling enabled
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
170189e56e
commit
3ee0f64c20
1 changed files with 6 additions and 1 deletions
|
|
@ -14,5 +14,10 @@ in
|
|||
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
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue