diff --git a/programs/zsh.nix b/programs/zsh.nix index 8361433..d146c46 100644 --- a/programs/zsh.nix +++ b/programs/zsh.nix @@ -11,9 +11,10 @@ enableAutosuggestions = true; enableCompletion = true; syntaxHighlighting.enable = true; + interactiveShellInit = '' + source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh + ''; }; - interactiveShellInit = '' - source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh - ''; + }