feat: adds zsh as shell

This commit is contained in:
Deepak Mallubhotla 2022-06-11 22:30:51 -05:00
parent 28ce0b2cfc
commit 16aba6d8c2

View File

@ -86,6 +86,7 @@ in
home = "/home/deepak"; home = "/home/deepak";
description = "Deepak Mallubhotla"; description = "Deepak Mallubhotla";
extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user. extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user.
shell = pkgs.zsh;
}; };
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
@ -95,6 +96,7 @@ in
firefox firefox
git git
]; ];
programs.zsh.enable = true;
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;