mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-25 14:39:29 +02:00
- update user module not to ask for a password - ALMA_USER_PASSWORD env variable added - update steam module - update base module
10 lines
298 B
TOML
10 lines
298 B
TOML
packages = ["sudo"]
|
|
script = """
|
|
set -eux
|
|
|
|
useradd -m ${ALMA_USER} -p $(openssl passwd -6 ${ALMA_USER_PASSWORD})
|
|
usermod -G users,lp,video,network,storage,wheel,audio -a ${ALMA_USER}
|
|
echo "%wheel ALL=(ALL) ALL" > /etc/sudoers.d/wheel
|
|
"""
|
|
environment_variables = ["ALMA_USER", "ALMA_USER_PASSWORD"]
|