Files
dotfiles/config/modules/tmux.nix
2026-02-13 19:21:27 +00:00

23 lines
531 B
Nix

{ modules, ... }:
{
modules.tmux = {
homeManager =
{ home, pkgs, ... }:
{
programs.tmux = {
enable = true;
plugins = with pkgs.tmuxPlugins; [
sensible
minimal-tmux-status
];
extraConfig = ''
set-option -g default-terminal "xterm-256color"
set -a terminal-features "xterm-256color:RGB"
set -g status-bg black
set -g status-fg white
'';
};
};
};
}