From 6b4f49c553f79e0455568cc03180d3ac8c470951 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 22 Aug 2022 07:48:52 +0200 Subject: [PATCH] Fix broken tmux configuration The shell needs to be referenced by full absolute path. --- 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 742d187..da9ffb3 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 = "zsh"; + shell = "${pkgs.zsh}/bin/zsh"; sensibleOnTop = false;