{ config, pkgs, ... }: { environment.systemPackages = with pkgs; [ zsh-git-prompt ]; programs.zsh = { enable = true; autosuggestions.enable = true; enableCompletion = true; syntaxHighlighting.enable = true; interactiveShellInit = '' source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh ''; }; }