dotfiles/homes/x86_64-linux/christopher@cobalt/global/terminal/programs/tmux.nix
Christopher Mühl 786af32daf
Publish my config
This is the result of ~100 commits to my NixOS config. Since I haven't
always used `agenix-rekey`, this is another initial commit so that none
of the secrets in my git history are leaked
2025-07-30 23:36:39 +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 '''
'';
}