From aa10d12fd8d988c5d20378bdb5ef0f09fcb9754c Mon Sep 17 00:00:00 2001
From: Crony Akatsuki <crony@cronyakatsuki.xyz>
Date: Fri, 31 Jan 2025 23:10:55 +0100
Subject: [PATCH] Enable tinted tmux theme statusbar.

---
 modules/home-manager/tmux.nix | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/modules/home-manager/tmux.nix b/modules/home-manager/tmux.nix
index 4a689d6..066c66a 100644
--- a/modules/home-manager/tmux.nix
+++ b/modules/home-manager/tmux.nix
@@ -9,6 +9,13 @@
   };
 
   config = lib.mkIf config.crony.tmux.enable {
+    # Enable custom tmux bar settings
+    home.sessionVariables = {
+      TINTED_TMUX_OPTION_ACTIVE = 1;
+      TINTED_TMUX_OPTION_STATUSBAR = 1;
+    };
+
+    # Setup tmux
     programs.tmux = {
       enable = true;
       escapeTime = 0;