redox/config/x86_64/acid.toml

54 lines
711 B
TOML
Raw Normal View History

# Configuration for using acid
include = ["../base.toml"]
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 256
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
2022-08-17 15:44:03 +02:00
bootloader = {}
acid = {}
coreutils = {}
# TODO: Does this need escalated?
escalated = {}
ion = {}
ipcd = {}
ptyd = {}
# User settings
[users.root]
password = "password"
uid = 0
gid = 0
name = "root"
home = "/root"
[users.user]
# Password is unset
password = ""
[[files]]
path = "/etc/init.d/00_base"
data = """
ipcd
ptyd
escalated
"""
[[files]]
path = "/etc/init.d/10_acid"
data = """
export RUST_BACKTRACE full
acid
acid create_test
acid switch
acid tls
acid thread
shutdown
"""