Add some example presets

This commit is contained in:
Roey Darwish Dror 2019-06-06 13:28:29 +03:00
parent 7dcff2a019
commit 379f11af42
4 changed files with 29 additions and 0 deletions

1
presets/installer.toml Normal file
View File

@ -0,0 +1 @@
packages = ['arch-install-scripts']

6
presets/kde.toml Normal file
View File

@ -0,0 +1,6 @@
packages = ["plasma-desktop", "dolphin", "gwenview", "konsole", "ttf-dejavu", "sddm"]
script = """
set -exu
systemctl enable sddm
"""

9
presets/user.toml Normal file
View File

@ -0,0 +1,9 @@
packages = ["sudo"]
script = """
set -eux
useradd -m ${ALMA_USER}
passwd ${ALMA_USER}
usermod -G wheel -a ${ALMA_USER}
"""
environment_variables = ["ALMA_USER"]

13
presets/zfs.toml Normal file
View File

@ -0,0 +1,13 @@
script = """
set -exu
cat << 'EOF' >> /etc/pacman.conf
[archzfs]
Server = https://archzfs.com/$repo/$arch
EOF
pacman-key -r F75D9D76
pacman-key --lsign-key F75D9D76
pacman -Sy archzfs-linux
"""