From 20521f77cc01049bd9e5d2f93b0d12c2deffeab1 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Wed, 7 Aug 2024 05:05:54 -0700 Subject: [PATCH] tmux-sessionizer: unescape shellArgs --- home/modules/tmux-sessionizer.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/modules/tmux-sessionizer.nix b/home/modules/tmux-sessionizer.nix index 01c10c3..b2640da 100644 --- a/home/modules/tmux-sessionizer.nix +++ b/home/modules/tmux-sessionizer.nix @@ -48,7 +48,7 @@ in if [[ $# -eq 1 ]]; then selected=$1 else - selected=$(${find} -L ${lib.escapeShellArgs cfg.paths} -mindepth 1 -maxdepth 1 -type d | ${fzf}) + selected=$(${find} -L ${lib.concatStringsSep " " cfg.paths} -mindepth 1 -maxdepth 1 -type d | ${fzf}) fi if [[ -z $selected ]]; then