mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2024-11-05 12:11:10 +00:00
32 lines
1.8 KiB
INI
32 lines
1.8 KiB
INI
# __ ____ ____ _____
|
|
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
|
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
|
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
|
# /_/ /____/
|
|
|
|
# WHAT ? This Kickstart file bootstraps a minimal desktop-oriented virtual machine.
|
|
# 'v' for virtual machine, 'e' for efi, 'm' for minimal, 'd' for desktop, 'd' for development only.
|
|
|
|
# USAGE : Press the `tab` or 'e' key during POST and apend that after the 'quiet' string :
|
|
# inst.ks=https://git.phyllo.me/home/kickstart/raw/branch/master/f34/vemdd.cfg
|
|
# A shorter URL can also be used :
|
|
# inst.ks=https://url.phyllo.me/vemdd
|
|
|
|
# ATTENTION : this kickstart file will automatically DESTROY the main virtual disk 'vda' and all of its contents.
|
|
# Bye bye!
|
|
|
|
%include https://git.phyllo.me/home/kickstart/raw/branch/master/f34/vemsd.cfg # Include vemsd.cfg as base
|
|
|
|
%post
|
|
|
|
dnf install -y gnome-shell gnome-terminal nano # Minimal GNOME shell or desktop environment plus the text nano editor
|
|
dnf install -y spice-vdagent # Try to install spice-vdagent after the installation is done
|
|
dnf install -y dejavu-sans-mono-fonts # the gnome-shell package doesn't include much fonts by default, resulting in weird spacings in gnome-terminal.
|
|
dnf install -y elementary-wallpapers-gnome.noarch # Gorgeous wallpapers
|
|
dnf install -y wpa_supplicant # WPA Supplicant for Linux. Not integrated by default in gnome-shell, but necessary to configure wireless networks through the Network Manager.
|
|
dnf remove -y gnome-tour # We don't want GNOME-tour to open at launch so we delete it
|
|
|
|
systemctl set-default graphical.target # Set the desktop environment as the default booting target with systemd
|
|
|
|
%end # End of the %post section |