mkalpiimg/setup/os.toml

34 lines
811 B
TOML
Raw Normal View History

2023-04-05 12:06:56 +00:00
[alpine]
# the alpine version. I recommend always using the latest available
branch = "v3.17"
# aarch64 is required if you want to run some software like a browser
arch = "aarch64"
# unless you have a local mirror that you know will be fast, just leave this empty
mirror = "https://ftp.halifax.rwth-aachen.de/alpine"
# here you can add some extra repositories and their signing keys
extra_repos = []
extra_keys = []
[host]
# set your local keyboard layout
keymap = "de"
keymap_variant = "de-dvorak"
# create a user for you to log in
[[user]]
name = "msrd0"
password = "changeme"
sudo = true
authorized_keys = [
# add your ssh key(s) here
]
# create a user for the autostarting kiosk
[[user]]
name = "kiosk"
password = "changeme"
groups = ["audio", "cdrom", "dialout", "floppy", "input", "uucp", "video"]