mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-25 22:49:28 +02:00
Add some example presets
This commit is contained in:
parent
7dcff2a019
commit
379f11af42
1
presets/installer.toml
Normal file
1
presets/installer.toml
Normal file
@ -0,0 +1 @@
|
||||
packages = ['arch-install-scripts']
|
6
presets/kde.toml
Normal file
6
presets/kde.toml
Normal 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
9
presets/user.toml
Normal 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
13
presets/zfs.toml
Normal 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
|
||||
"""
|
Loading…
x
Reference in New Issue
Block a user