Disable nixos zsh prompt.

This commit is contained in:
Gabriel Ebner 2015-05-21 17:51:41 +02:00
parent f0de368f04
commit e6f7e52a90
1 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,10 @@
options = "noauto,x-systemd.automount,credentials=/etc/smbcredentials/aruanus";
};
programs.zsh.enable = true;
programs.zsh = {
enable = true;
promptInit = "";
};
users.extraUsers.gebner = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];