From f2dad229d23ca7f43d1b698a3fe3b11a994d4a3f Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 26 May 2026 14:47:01 -0500 Subject: feat(archsetup): make the claude-code install optional The claude-code step is a curl|sh from a third party, and not every user wants AI tooling. I put it behind INSTALL_CLAUDE_CODE (default yes, so current behavior is unchanged), with matching --claude-code / --no-claude-code flags. I wired it the same way as AUTOLOGIN and NO_GPU_DRIVERS: config mapping, a validate_config yes/no check, and a guard around the install block. I also documented the key in archsetup.conf.example. --- archsetup.conf.example | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'archsetup.conf.example') diff --git a/archsetup.conf.example b/archsetup.conf.example index f866134..962d05f 100644 --- a/archsetup.conf.example +++ b/archsetup.conf.example @@ -34,6 +34,11 @@ # Set to "yes" if you want to handle GPU drivers manually #NO_GPU_DRIVERS=no +# Install the claude-code AI assistant (default: yes) +# Native install via `curl -fsSL https://claude.ai/install.sh | sh`. +# Set to "no" to skip it (no AI tooling, avoids the curl-pipe-bash step). +#INSTALL_CLAUDE_CODE=yes + # System locale (default: prompt if not already configured) # Common options: en_US.UTF-8, en_GB.UTF-8, de_DE.UTF-8, es_ES.UTF-8, # fr_FR.UTF-8, pt_BR.UTF-8, ja_JP.UTF-8, zh_CN.UTF-8 -- cgit v1.2.3