fix: update workshop WiFi credentials to match documentation

- Update SSID from 'ziegel' to 'CODE_CRISPIES'
- Update password to 'scienceinthecity2025'
- Update connection check in WiFi setup service
- Sync with USB_BOOT_INSTRUCTIONS.md documentation
This commit is contained in:
2025-09-16 18:58:14 +02:00
parent fe21611678
commit c996924055

View File

@@ -259,8 +259,8 @@ isoConfig
# WiFi credentials file
environment.etc."NetworkManager/workshop-wifi.env" = {
text = ''
WORKSHOP_SSID="ziegel"
WORKSHOP_PSK="1234567890"
WORKSHOP_SSID="CODE_CRISPIES"
WORKSHOP_PSK="scienceinthecity2025"
'';
mode = "0600";
};
@@ -281,7 +281,7 @@ isoConfig
source /etc/NetworkManager/workshop-wifi.env
# Check if connection already exists
if nmcli connection show | grep -q "ziegel"; then
if nmcli connection show | grep -q "CODE_CRISPIES"; then
echo " Workshop WiFi connection already exists"
exit 0
fi