From e5bc8cb43f7b631bb274dd55ed8654c93710d8ef Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Sat, 26 Jul 2025 03:41:51 -0400 Subject: [PATCH] Set default value for modules.zsh option --- modules/options/zsh.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/options/zsh.nix b/modules/options/zsh.nix index 797ffde..a3f6cdc 100644 --- a/modules/options/zsh.nix +++ b/modules/options/zsh.nix @@ -9,9 +9,8 @@ let in { options.modules.zsh = { - enable = mkEnableOption "Install ZSH"; - defaultShell = mkEnableOption { - description = "Set ZSH as the default shell"; + enable = mkEnableOption { + description = "Install ZSH"; default = true; }; };