35 lines
985 B
Plaintext
35 lines
985 B
Plaintext
#version=RHEL8
|
|
lang en_US.UTF-8
|
|
keyboard us
|
|
timezone America/Chicago --isUtc
|
|
|
|
# Root user locked for security
|
|
rootpw --lock
|
|
|
|
# First boot wizard enabled for user creation
|
|
firstboot --enable
|
|
|
|
# Repositories (Silverblue base)
|
|
repo --name=fedora --baseurl=https://download.fedoraproject.org/pub/fedora/linux/releases/43/Everything/x86_64/os/
|
|
|
|
# Packages to include in the image
|
|
%packages
|
|
@core
|
|
vlc
|
|
gimp
|
|
# Add more RPMs here if desired
|
|
%end
|
|
|
|
# Post-install customizations
|
|
%post
|
|
# Branding - wallpaper example
|
|
mkdir -p /usr/share/backgrounds/
|
|
cp /tmp/branding/wallpaper.png /usr/share/backgrounds/
|
|
# Set default GNOME wallpaper
|
|
gsettings set org.gnome.desktop.background picture-uri "file:///usr/share/backgrounds/wallpaper.png"
|
|
|
|
# Install Flatpaks (non-interactive)
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
flatpak install --noninteractive flathub io.gitlab.librewolf-community
|
|
flatpak install --noninteractive flathub org.rncbc.qpwgraph
|
|
%end |