150 lines
3.2 KiB
TOML
150 lines
3.2 KiB
TOML
# Jeremy's configuration
|
|
|
|
include = ["../net.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 4000
|
|
# Do not prompt if settings are not defined
|
|
prompt = false
|
|
|
|
# Package settings
|
|
[packages]
|
|
audiod = {}
|
|
bash = {}
|
|
bootloader = {}
|
|
bootstrap = {}
|
|
ca-certificates = {}
|
|
contain = {}
|
|
coreutils = {}
|
|
diffutils = {}
|
|
drivers = {}
|
|
escalated = {}
|
|
extrautils = {}
|
|
findutils = {}
|
|
initfs = {}
|
|
installer = {}
|
|
installer-gui = {}
|
|
ion = {}
|
|
ipcd = {}
|
|
kernel = {}
|
|
netdb = {}
|
|
netsurf = {}
|
|
orbdata = {}
|
|
orbital = {}
|
|
orbterm = {}
|
|
orbutils = {}
|
|
pkgutils = {}
|
|
ptyd = {}
|
|
redoxfs = {}
|
|
relibc = {}
|
|
resist = {}
|
|
smith = {}
|
|
userutils = {}
|
|
uutils = {}
|
|
|
|
# apps
|
|
cosmic-text = {}
|
|
pixelcannon = {}
|
|
sodium = {}
|
|
|
|
# cli
|
|
acid = {}
|
|
cleye = {}
|
|
ripgrep = {}
|
|
|
|
# demos
|
|
cpal = {}
|
|
orbclient = {}
|
|
rodioplay = {}
|
|
winit = {}
|
|
|
|
# games
|
|
dosbox = {}
|
|
eduke32 = {}
|
|
freedoom = {}
|
|
prboom = {}
|
|
redox-games = {}
|
|
|
|
# stuff
|
|
freepats = {}
|
|
generaluser-gs = {}
|
|
jeremy = {}
|
|
keyboard-sfx = {}
|
|
terminfo = {}
|
|
ttf-hack = {}
|
|
|
|
# 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/
|
|
escalated
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/init.d/20_orbital"
|
|
data = """
|
|
audiod
|
|
orbital orblogin launcher
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/init.d/30_console"
|
|
data = """
|
|
getty 2
|
|
getty debug: -J
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/pkg.d/50_redox"
|
|
data = "https://static.redox-os.org/pkg"
|
|
|
|
[[files]]
|
|
path = "/etc/group"
|
|
data = """
|
|
root;0;root
|
|
user;1000;user
|
|
sudo;1;user
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/home/user/Welcome.txt"
|
|
data = """
|
|
##############################################################################
|
|
# #
|
|
# Welcome to Redox! #
|
|
# #
|
|
# Redox is an operating system written in Rust, a language with focus #
|
|
# on safety and high performance. Redox, following the microkernel design, #
|
|
# aims to be secure, usable, and free. Redox is inspired by previous kernels #
|
|
# and operating systems, such as SeL4, MINIX, Plan 9, and BSD. #
|
|
# #
|
|
# Redox _is not_ just a kernel, it's a full-featured Operating System, #
|
|
# providing packages (memory allocator, file system, display manager, core #
|
|
# utilities, etc.) that together make up a functional and convenient #
|
|
# operating system. You can loosely think of it as the GNU or BSD ecosystem, #
|
|
# but in a memory safe language and with modern technology. #
|
|
# #
|
|
# The website can be found at https://www.redox-os.org. #
|
|
# #
|
|
# For things to try on Redox, please see #
|
|
# https://doc.redox-os.org/book/ch02-06-trying-out-redox.html #
|
|
# #
|
|
##############################################################################
|
|
"""
|