21 lines
400 B
Nix
21 lines
400 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
zsh-git-prompt
|
|
];
|
|
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableAutosuggestions = true;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
interactiveShellInit = ''
|
|
source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh
|
|
'';
|
|
};
|
|
|
|
|
|
}
|