mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
36 lines
512 B
TOML
36 lines
512 B
TOML
# Server configuration
|
|
|
|
include = ["net.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 512
|
|
|
|
# Package settings
|
|
[packages]
|
|
bash = {}
|
|
ca-certificates = {}
|
|
#contain = {} # needs to update dependencies
|
|
coreutils = {}
|
|
curl = {}
|
|
diffutils = {}
|
|
extrautils = {}
|
|
findutils = {}
|
|
git = {}
|
|
installer = {}
|
|
ion = {}
|
|
kibi = {}
|
|
netdb = {}
|
|
pkgutils = {}
|
|
redoxfs = {}
|
|
resist = {}
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
inputd -A 2
|
|
getty 2
|
|
getty /scheme/debug/no-preserve -J
|
|
"""
|