redox/config/minimal.toml

66 lines
805 B
TOML
Raw Normal View History

# Minimal configuration
2019-02-02 03:28:39 +01:00
# General settings
[general]
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
2022-07-24 17:02:48 +02:00
drivers = {}
2019-02-02 03:28:39 +01:00
ipcd = {}
2022-07-24 17:02:48 +02:00
kernel = {}
2019-02-02 03:28:39 +01:00
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
pcid /etc/pcid.d/
2019-02-02 03:28:39 +01:00
"""
[[files]]
path = "/usr/bin"
2022-03-17 15:39:53 +01:00
data = "../bin"
2019-02-02 03:28:39 +01:00
symlink = true
[[files]]
path = "/usr/games"
2022-03-17 15:39:53 +01:00
data = "../games"
2019-02-02 03:28:39 +01:00
symlink = true
[[files]]
path = "/usr/include"
2022-03-17 15:39:53 +01:00
data = "../include"
2019-02-02 03:28:39 +01:00
symlink = true
[[files]]
path = "/usr/lib"
2022-03-17 15:39:53 +01:00
data = "../lib"
2019-02-02 03:28:39 +01:00
symlink = true
[[files]]
path = "/usr/share"
2022-03-17 15:39:53 +01:00
data = "../share"
2019-02-02 03:28:39 +01:00
symlink = true
[[files]]
path = "/tmp"
data = ""
directory= true
# 0o1777
mode = 1023