2024-10-11 00:08:08 +02:00
|
|
|
{
|
|
|
|
programs.tmux = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = ''
|
|
|
|
set-option -g status off
|
2024-10-11 14:40:50 +02:00
|
|
|
# Ensure tmux uses 256 colors
|
|
|
|
set -g default-terminal "tmux-256color"
|
|
|
|
|
|
|
|
# Enable true colors (24-bit color) in tmux
|
|
|
|
set-option -ga terminal-overrides ",xterm-256color:Tc"
|
2024-10-11 00:08:08 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|