62 lines
774 B
TOML
62 lines
774 B
TOML
# Minimal configuration
|
|
|
|
include = ["../base.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 128
|
|
# Do not prompt if settings are not defined
|
|
prompt = false
|
|
|
|
# Package settings
|
|
[packages]
|
|
bootloader = {}
|
|
bootstrap = {}
|
|
coreutils = {}
|
|
escalated = {}
|
|
extrautils = {}
|
|
initfs = {}
|
|
ion = {}
|
|
ipcd = {}
|
|
kernel = {}
|
|
ptyd = {}
|
|
smith = {}
|
|
userutils = {}
|
|
uutils = {}
|
|
|
|
# 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/30_console"
|
|
data = """
|
|
getty 2
|
|
getty debug: -J
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/group"
|
|
data = """
|
|
root;0;root
|
|
user;1000;user
|
|
sudo;1;user
|
|
"""
|