summaryrefslogtreecommitdiff
path: root/modules/programs
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2024-10-31 15:02:36 +1100
committerMichael Hoang <enzime@users.noreply.github.com>2024-10-31 15:09:11 +1100
commit470f87c1827b51169ed4f91cdbdfd48417bfff3d (patch)
treed4b9a3521ccd7e41c961ed568a0f29a4c2edea17 /modules/programs
parentb379bd4d872d159e5189053ce9a4adf86d56db4b (diff)
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.
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/zsh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/programs/zsh/default.nix b/modules/programs/zsh/default.nix
index bfbfc59..1665fcd 100644
--- a/modules/programs/zsh/default.nix
+++ b/modules/programs/zsh/default.nix
@@ -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.";
};