zsh: enable by default as zsh is the default shell on macOS

Historically this was a footgun because users would not always have this
enabled leading to `darwin-rebuild` and other programs not being found.
This commit is contained in:
Michael Hoang 2024-10-31 15:02:36 +11:00
parent b379bd4d87
commit 470f87c182
3 changed files with 3 additions and 5 deletions

View file

@ -18,7 +18,7 @@ in
options = {
programs.zsh.enable = mkOption {
type = types.bool;
default = false;
default = true;
description = "Whether to configure zsh as an interactive shell.";
};