tmux: fix wayland clipboard

This commit is contained in:
Zynh Ludwig 2025-04-11 14:19:52 -07:00
parent f713364a11
commit 22bc894406
2 changed files with 10 additions and 1 deletions
home/modules
modules

View file

@ -19,7 +19,7 @@ in
# shell = getExe pkgs.fish;
mouse = true;
baseIndex = 1;
terminal = "screen-256color";
terminal = "xterm-kitty";
newSession = true;
escapeTime = 0;

View file

@ -95,6 +95,15 @@ in
}];
}
# tmux clipboard fix
{
home-manager.sharedModules = [{
programs.tmux.extraConfig = ''
set -s copy-command 'wl-copy'
'';
}];
}
# hyprland configuration
{
home-manager.sharedModules = [{