Fix tmux configuration

This commit is contained in:
Haak Saxberg 2024-12-12 11:52:54 -08:00
parent 908241eb67
commit 5951004562
3 changed files with 16 additions and 32 deletions

View file

@ -1,14 +1,19 @@
{ pkgs, ... }:
{ ... }:
{
programs.tmux = {
enable = true;
tmuxinator = {
enable = true;
};
secureSocket = false;
};
home.file.".tmux.conf" = {
source = ./tmux.conf;
terminal = "screen-256color";
aggressiveResize = true;
secureSocket = false;
baseIndex = 1;
historyLimit = 10000;
escapeTime = 500;
mouse = true;
extraConfig = builtins.readFile ./tmux.conf;
};
}