From a1a9b5219218f06a2957e9168e8ae0fdb433a61d Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 13 Mar 2026 10:34:08 +0100 Subject: [PATCH] Make Homebrew installation non-interactive --- files/etc/skel/.config/firstboot/firstboot-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/etc/skel/.config/firstboot/firstboot-setup.sh b/files/etc/skel/.config/firstboot/firstboot-setup.sh index a6f7d10..233a251 100644 --- a/files/etc/skel/.config/firstboot/firstboot-setup.sh +++ b/files/etc/skel/.config/firstboot/firstboot-setup.sh @@ -31,7 +31,7 @@ ensure_flathub() { install_brew_and_setup_path() { if ! command -v brew >/dev/null 2>&1; then - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" fi local BREW_PREFIX="/home/linuxbrew/.linuxbrew"