programs.tmux = {
enable = true;
sensibleOnTop = false;
baseIndex = 1;
clock24 = true;
terminal = "screen-256color";
extraConfig = ''
# Do not automatically rename
set -g allow-rename off
# Set status bar
set -g status-style bg=default,fg=yellow,dim
# Highlight current
setw -g window-status-current-style fg=yellow,bg=black,bold
# Set nice formats
setw -g window-status-format '#{?window_flags,#F, }#I:#W#{?window_flags,#F, }'
setw -g window-status-current-format '#{?window_flags,#F, }#I:#W#{?window_flags,#F, }'
'';
};