tree-wide: drop tmux

This commit is contained in:
Aly Raffauf 2024-12-21 12:15:35 -05:00
parent 606e55421e
commit 90008e7db9
4 changed files with 1 additions and 34 deletions

View file

@ -15,7 +15,6 @@
./shell ./shell
./swaylock ./swaylock
./thunar ./thunar
./tmux
./vsCodium ./vsCodium
./wlogout ./wlogout
./yazi ./yazi

View file

@ -42,10 +42,7 @@
icons = "auto"; icons = "auto";
}; };
fzf = { fzf.enable = true;
enable = true;
tmux.enableShellIntegration = true;
};
oh-my-posh = { oh-my-posh = {
enable = true; enable = true;

View file

@ -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 '
'';
};
};
}

View file

@ -52,7 +52,6 @@ in {
type = lib.types.bool; type = lib.types.bool;
}; };
tmux.enable = lib.mkEnableOption "Tmux shell session manager.";
vsCodium.enable = lib.mkEnableOption "VSCodium text editor."; vsCodium.enable = lib.mkEnableOption "VSCodium text editor.";
wlogout.enable = lib.mkEnableOption "Wlogout session prompt."; wlogout.enable = lib.mkEnableOption "Wlogout session prompt.";
yazi.enable = lib.mkEnableOption "Yazi terminal file manager."; yazi.enable = lib.mkEnableOption "Yazi terminal file manager.";