dotfiles/nix/home/programs/tmux/default.nix

20 lines
329 B
Nix
Raw Permalink Normal View History

2024-12-12 11:52:54 -08:00
{ ... }:
2021-10-05 23:42:21 -07:00
{
programs.tmux = {
enable = true;
tmuxinator = {
enable = true;
};
2024-12-12 11:52:54 -08:00
terminal = "screen-256color";
aggressiveResize = true;
2021-10-05 23:42:21 -07:00
secureSocket = false;
2024-12-12 11:52:54 -08:00
baseIndex = 1;
historyLimit = 10000;
escapeTime = 500;
mouse = true;
2021-10-05 23:42:21 -07:00
2024-12-12 11:52:54 -08:00
extraConfig = builtins.readFile ./tmux.conf;
2021-10-05 23:42:21 -07:00
};
}