oh-my-zsh: Fix plugins escapeShellArgs use

This commit is contained in:
Felix Stupp 2026-04-12 17:05:29 +00:00 committed by Austin Horstman
parent 7832a664c4
commit f6196e5b4d

View file

@ -97,7 +97,7 @@ in
# oh-my-zsh configuration generated by NixOS
${optionalString (
cfg.oh-my-zsh.plugins != [ ]
) "plugins=(${lib.concatStringsSep " " (escapeShellArgs cfg.oh-my-zsh.plugins)})"}
) "plugins=(${escapeShellArgs cfg.oh-my-zsh.plugins})"}
${optionalString (cfg.oh-my-zsh.custom != "") "ZSH_CUSTOM=${escapeShellArg cfg.oh-my-zsh.custom}"}
${optionalString (cfg.oh-my-zsh.theme != "") "ZSH_THEME=${escapeShellArg cfg.oh-my-zsh.theme}"}
source $ZSH/oh-my-zsh.sh