From 90008e7db9e1aeda51382a7cc7e2badda44b9cc8 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sat, 21 Dec 2024 12:15:35 -0500 Subject: [PATCH] tree-wide: drop tmux --- homeManagerModules/apps/default.nix | 1 - homeManagerModules/apps/shell/default.nix | 5 +--- homeManagerModules/apps/tmux/default.nix | 28 ----------------------- homeManagerModules/options.nix | 1 - 4 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 homeManagerModules/apps/tmux/default.nix diff --git a/homeManagerModules/apps/default.nix b/homeManagerModules/apps/default.nix index 49eb4ece..a3e8b95c 100644 --- a/homeManagerModules/apps/default.nix +++ b/homeManagerModules/apps/default.nix @@ -15,7 +15,6 @@ ./shell ./swaylock ./thunar - ./tmux ./vsCodium ./wlogout ./yazi diff --git a/homeManagerModules/apps/shell/default.nix b/homeManagerModules/apps/shell/default.nix index 61a249b8..0300fb06 100644 --- a/homeManagerModules/apps/shell/default.nix +++ b/homeManagerModules/apps/shell/default.nix @@ -42,10 +42,7 @@ icons = "auto"; }; - fzf = { - enable = true; - tmux.enableShellIntegration = true; - }; + fzf.enable = true; oh-my-posh = { enable = true; diff --git a/homeManagerModules/apps/tmux/default.nix b/homeManagerModules/apps/tmux/default.nix deleted file mode 100644 index 09d5a64c..00000000 --- a/homeManagerModules/apps/tmux/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: { - config = lib.mkIf config.ar.home.apps.tmux.enable { - programs.tmux = { - enable = true; - mouse = true; - newSession = true; - - plugins = with pkgs; [ - tmuxPlugins.battery - tmuxPlugins.better-mouse-mode - tmuxPlugins.cpu - tmuxPlugins.resurrect - tmuxPlugins.weather - ]; - - terminal = "tmux-256color"; - - extraConfig = '' - set -g status-right '%I:%M %p ' - ''; - }; - }; -} diff --git a/homeManagerModules/options.nix b/homeManagerModules/options.nix index 34ad57c9..e6049bd2 100644 --- a/homeManagerModules/options.nix +++ b/homeManagerModules/options.nix @@ -52,7 +52,6 @@ in { type = lib.types.bool; }; - tmux.enable = lib.mkEnableOption "Tmux shell session manager."; vsCodium.enable = lib.mkEnableOption "VSCodium text editor."; wlogout.enable = lib.mkEnableOption "Wlogout session prompt."; yazi.enable = lib.mkEnableOption "Yazi terminal file manager.";