Compare commits

...

2 commits

Author SHA1 Message Date
timoxa0 fc9c404450 Add Fedora Workstation 41 2024-11-03 14:44:09 +05:00
timoxa0 5ec3020765 Fix debian 12 gnome 2024-11-03 14:43:47 +05:00
2 changed files with 18 additions and 1 deletions

View file

@ -15,7 +15,6 @@ base_system() {
}
packages=(
"gnome-core"
"bash-completion"
"sudo"
"ssh"
@ -23,6 +22,9 @@ packages=(
)
post_install() {
log "Installing gnome"
chroot "$imageroot" apt install gnome-core -y
log "Configuring gdm and GNOME"
mkdir -p "$imageroot/etc/skel/.config"

View file

@ -0,0 +1,15 @@
image_type="fedora"
name="FedoraWorkstation"
imgver="41-$(date '+%Y-%m-%d')"
zram="y"
pre_install=()
base_system()
{
fetch_base_system "$imageroot" 41 1.4 Workstation
}
packages=()
post_install=()