From 8519f95bc278de587189411f4d255d36a05b6cde Mon Sep 17 00:00:00 2001
From: humocs-man <251756307+humocs-man@users.noreply.github.com>
Date: Sat, 14 Mar 2026 11:41:33 +0100
Subject: [PATCH] Add local AI applications to firstboot setup
Added support for installing local AI applications like Alpaca and GPT-4 All.
---
.../skel/.config/firstboot/firstboot-setup.sh | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/files/etc/skel/.config/firstboot/firstboot-setup.sh b/files/etc/skel/.config/firstboot/firstboot-setup.sh
index dccd5ca..263d2d3 100644
--- a/files/etc/skel/.config/firstboot/firstboot-setup.sh
+++ b/files/etc/skel/.config/firstboot/firstboot-setup.sh
@@ -166,7 +166,8 @@ run_list GAMES \
"Spiele" \
"Spiele‑Plattformen\nPlattformen für PC‑Spiele." \
steam "Große Spielebibliothek und Community‑Funktionen" \
- lutris "Zentrale Verwaltung von Spielen aus vielen Quellen"
+ lutris "Zentrale Verwaltung von Spielen aus vielen Quellen" \
+ sober "Spiele Roblox auf Linux"
run_list MAIL \
"E‑Mail" \
@@ -175,6 +176,14 @@ run_list MAIL \
geary "Schlanker Mail‑Client mit einfacher Bedienung" \
evolution "E‑Mail, Kalender und Kontakte in einer Anwendung"
+run_list KI \
+ "Anwendungen für lokale KI" \
+ "KI-Anwenungen\nProgramme für lokale KI-Anwendungen" \
+ alpaca "All-In-One-Anwendung für lokale Chat- und RAG-Nutzung" \
+ gpt4all "All-In-One-Anwendung von NomicAI"
+
+
+
run_list DEV \
"Entwicklung" \
"Entwicklung\nWerkzeuge für Software‑Entwicklung." \
@@ -240,6 +249,7 @@ ensure_flathub
case "$g" in
steam) flatpak install -y flathub com.valvesoftware.Steam ;;
lutris) flatpak install -y flathub net.lutris.Lutris ;;
+ sober) flatpak install -y flathub org.vinegarhq.Sober ;;
esac
done
@@ -251,6 +261,13 @@ ensure_flathub
esac
done
+ for m in ${KI//|/ }; do
+ case "$m" in
+ alpaca) flatpak install -y flathub com.jeffser.Alpaca ;;
+ gpt4all) flatpak install -y flathub io.gpt4all.gpt4all ;;
+ esac
+ done
+
for d in ${DEV//|/ }; do
[[ "$d" == vscode ]] && flatpak install -y flathub com.visualstudio.code
done