From 143464aa2be56f9e84e2afda23bebb1ffb23b94c Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Mon, 12 Dec 2022 15:28:51 -0500 Subject: [PATCH] string optimization --- modules/cli/powerline.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cli/powerline.nix b/modules/cli/powerline.nix index 9cd7532..034937c 100644 --- a/modules/cli/powerline.nix +++ b/modules/cli/powerline.nix @@ -41,7 +41,7 @@ in local remote=y [ "$XDG_SESSION_TYPE" = "x11" ] && unset remote [ "$XDG_SESSION_TYPE" = "wayland" ] && unset remote - PS1="\n$(powerline-go ${lib.concatStringsSep " " cfg.args})" + PS1="\n$(powerline-go ${toString cfg.args})" } [ "$TERM" = "linux" ] || PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND" '';