diff --git a/home-manager/modules/tmux/default.nix b/home-manager/modules/tmux/default.nix index 8b78ef4..f53249c 100644 --- a/home-manager/modules/tmux/default.nix +++ b/home-manager/modules/tmux/default.nix @@ -21,16 +21,19 @@ in { plugin = dracula; extraConfig = '' - set -g @dracula-show-battery false + set -g @dracula-refresh-rate 10 set -g @dracula-show-powerline true set -g @dracula-show-fahrenheit false - set -g @dracula-refresh-rate 10 + set -g @dracula-show-left-icon session + set -g @dracula-network-bandwith "enp4s0" + set -g @dracula-military-time true + set -g @dracula-day-month true + set -g @dracula-plugins "time cpu-usage ram-usage network network-bandwith" ''; } ]; extraConfig = '' - source ${pkgs.powerline}/share/tmux/powerline.conf setw -g automatic-rename set -ag update-environment "SWAYSOCK" @@ -71,6 +74,7 @@ in home.packages = with pkgs; [ powerline + bc ]; }; }