feat: set default shell and fix missing param

Changed files
+2 -1
programs
+2 -1
programs/shells.nix
···
-
{ ... }:
{
programs.zsh = {
enable = true;
histSize = 50000;
···
+
{ pkgs, ... }:
{
+
users.defaultUserShell = pkgs.zsh;
programs.zsh = {
enable = true;
histSize = 50000;