From e22162c417117e4198fa3710254d255886d7d2bc Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Sun, 20 Sep 2015 10:45:13 +0200 Subject: [PATCH] switch to bash --- basic-tools.nix | 4 ++++ common.nix | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/basic-tools.nix b/basic-tools.nix index 51f7a0e..a1a6a3b 100644 --- a/basic-tools.nix +++ b/basic-tools.nix @@ -43,4 +43,8 @@ enable = true; promptInit = ""; }; + + programs.bash = { + enableCompletion = true; + }; } diff --git a/common.nix b/common.nix index 6661dcb..67f7b13 100644 --- a/common.nix +++ b/common.nix @@ -137,7 +137,7 @@ users.extraUsers.gebner = { isNormalUser = true; extraGroups = [ "wheel" "networkmanager" ]; - shell = "${pkgs.zsh}/bin/zsh"; + # shell = "${pkgs.zsh}/bin/zsh"; password = if config.virtualisation != null then "" else null; };