dotfiles/modules/home/common/terminal/programs/tmux.nix
Christopher Mühl 53b8448159 Make common modules compatible for nix-darwin
TODO: Determine why nushell config is populated twice
2025-08-06 23:14:38 +02:00

16 lines
492 B
Nix

{pkgs, ...}: {
home.packages = [pkgs.tmux];
home.file.".tmux.inspect.conf".text = ''
set -g status-position top
set-option -g status-bg default
set -g 'status-format[0]' '#[fill=colour202 bg=colour202 fg=colour231 bold]Danger! HAUSGOLD Inspector '
set-option -g status-justify centre
#set -g 'status-format[1]' '#[bg=default]'
#set -g status 2
#set -g status-left '''
#set -g window-status-current-format '''
#set -g window-status-format '''
'';
}