From 2554732f571fa37e893392ffb73b9d57e59cd62a Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 16 Nov 2023 16:07:30 +0100 Subject: [PATCH] Ensure to use the actual zsh?! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I don't know why this was causing issues. But some tmux plugins were not compatible with the zsh? That change fixed it … --- home/programs/tmux.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/programs/tmux.nix b/home/programs/tmux.nix index da9ffb3..587c005 100644 --- a/home/programs/tmux.nix +++ b/home/programs/tmux.nix @@ -17,7 +17,7 @@ # Use screen instead of tmux as some tools might not be aware of tmux terminal = "screen-256color"; - shell = "${pkgs.zsh}/bin/zsh"; + shell = "/home/daniels/.nix-profile/bin/zsh"; sensibleOnTop = false;