initial commit

This commit is contained in:
2026-03-21 12:17:37 -05:00
commit d340047d9d
11 changed files with 222 additions and 0 deletions

35
kickstarts/neko_system.ks Normal file
View File

@@ -0,0 +1,35 @@
#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