switch to bash

This commit is contained in:
Gabriel Ebner 2015-09-20 10:45:13 +02:00
parent 206c7f4d50
commit e22162c417
2 changed files with 5 additions and 1 deletions

View File

@ -43,4 +43,8 @@
enable = true; enable = true;
promptInit = ""; promptInit = "";
}; };
programs.bash = {
enableCompletion = true;
};
} }

View File

@ -137,7 +137,7 @@
users.extraUsers.gebner = { users.extraUsers.gebner = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ]; extraGroups = [ "wheel" "networkmanager" ];
shell = "${pkgs.zsh}/bin/zsh"; # shell = "${pkgs.zsh}/bin/zsh";
password = if config.virtualisation != null then "" else null; password = if config.virtualisation != null then "" else null;
}; };