Change workflow file
parent
d10d0f409c
commit
806269b33e
@ -1,3 +1,4 @@
|
|||||||
*.iso
|
*.iso
|
||||||
crystal/airootfs/etc/pacman.conf
|
crystal/airootfs/etc/pacman.conf
|
||||||
crystal/airootfs/etc/buildstamp
|
crystal/airootfs/etc/buildstamp
|
||||||
|
chrooted.sh
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
echo "Chrooted in the new system, running as $(whoami)"
|
|
||||||
|
|
||||||
# Compile GSchemas
|
|
||||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
|
||||||
|
|
||||||
# User setup
|
|
||||||
useradd -mG wheel crystal
|
|
||||||
usermod -c "Password // \"crystal\"" crystal
|
|
||||||
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) crystal
|
|
||||||
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) root
|
|
||||||
chsh -s /usr/bin/zsh crystal
|
|
||||||
|
|
||||||
# Install Jade's GUI
|
|
||||||
flatpak install -y --noninteractive /usr/share/jade-gui/jade-gui.flatpak
|
|
||||||
|
|
||||||
# Desktop icon for Jade's GUI
|
|
||||||
mkdir -p /home/crystal/Desktop
|
|
||||||
cp \
|
|
||||||
/var/lib/flatpak/exports/share/applications/al.getcryst.jadegui.desktop \
|
|
||||||
/home/crystal/Desktop/Install.desktop
|
|
||||||
chown -R crystal:crystal /home/crystal/
|
|
||||||
|
|
||||||
# Services
|
|
||||||
systemctl enable NetworkManager
|
|
||||||
systemctl enable mirrorlist
|
|
||||||
systemctl enable gdm
|
|
||||||
|
|
||||||
# Hostname and Locale
|
|
||||||
echo "crystal-live" > /etc/hostname
|
|
||||||
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
|
||||||
locale-gen
|
|
||||||
echo "LANG=en_US.UTF-8" > /etc/locale.conf
|
|
||||||
echo "Configured the system. Exiting chroot."
|
|
Loading…
Reference in New Issue