1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

Merge pull request #954 from thegleich/change-zsh-default-prompt

Change zsh default prompt
This commit is contained in:
Michael Hoang 2024-05-20 21:17:27 +10:00 committed by GitHub
commit a2d8796ce9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@ in
programs.zsh.promptInit = mkOption {
type = types.lines;
default = "autoload -U promptinit && promptinit && prompt walters && setopt prompt_sp";
default = "autoload -U promptinit && promptinit && prompt suse && setopt prompt_sp";
description = "Shell script code used to initialise the zsh prompt.";
};