From 2a036581c7293081843c1a6beef8a8d4de8e703c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 10 May 2026 02:37:58 -0700 Subject: [PATCH] Use host identity colors for tmux status --- nixos/options.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/options.nix b/nixos/options.nix index d02d89f4..2bb7d15f 100644 --- a/nixos/options.nix +++ b/nixos/options.nix @@ -42,9 +42,9 @@ in { ''; environment.etc."tmux-host-style.conf".text = '' - set -g status-style "fg=#ffffff,bg=blue" - set -g status-left-style "fg=#ffffff,bg=blue" - set -g status-right-style "fg=#ffffff,bg=blue" + set -g status-style "fg=${hostIdentity.tmux.foreground},bg=${hostIdentity.tmux.background}" + set -g status-left-style "fg=${hostIdentity.tmux.foreground},bg=${hostIdentity.tmux.background}" + set -g status-right-style "fg=${hostIdentity.tmux.foreground},bg=${hostIdentity.tmux.background}" ''; }; }