10 lines
187 B
Nix
10 lines
187 B
Nix
{ ... }:
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
set -g default-terminal "tmux-256color"
|
|
set -ag terminal-overrides ",xterm-256color:RGB"
|
|
'';
|
|
};
|
|
}
|