From 16aba6d8c2a48d60129778fb9a97dcf7f593150a Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Sat, 11 Jun 2022 22:30:51 -0500 Subject: [PATCH] feat: adds zsh as shell --- hosts/maxos/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/maxos/configuration.nix b/hosts/maxos/configuration.nix index 70c84e6..1296092 100644 --- a/hosts/maxos/configuration.nix +++ b/hosts/maxos/configuration.nix @@ -86,6 +86,7 @@ in home = "/home/deepak"; description = "Deepak Mallubhotla"; extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user. + shell = pkgs.zsh; }; # List packages installed in system profile. To search, run: @@ -95,6 +96,7 @@ in firefox git ]; + programs.zsh.enable = true; nixpkgs.config.allowUnfree = true;