From 92b0bf27a3aa97692c21f588390bcc39f8ceb3d0 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; }; };