From 94c349b69ca7638117fbcef0e4725ebc9053622c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 17 Aug 2025 23:10:16 +0100 Subject: [PATCH] Remove tmux-resurrect --- modules2/tmux/plugins.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules2/tmux/plugins.nix b/modules2/tmux/plugins.nix index d5d9e0b5..3e7d723d 100644 --- a/modules2/tmux/plugins.nix +++ b/modules2/tmux/plugins.nix @@ -2,9 +2,6 @@ flake.modules.homeManager.base = { pkgs, ... }: { - programs.tmux.plugins = with pkgs.tmuxPlugins; [ - resurrect - yank - ]; + programs.tmux.plugins = with pkgs.tmuxPlugins; [ yank ]; }; }