70 lines
2.2 KiB
TOML
70 lines
2.2 KiB
TOML
# Configuration for demonstration
|
|
|
|
include = ["../desktop.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 1536
|
|
|
|
# Package settings
|
|
[packages]
|
|
# GUI Apps
|
|
periodictable = {}
|
|
|
|
# GUI Data
|
|
intel-one-mono = {}
|
|
|
|
# Shell Apps
|
|
curl = {}
|
|
git = {}
|
|
gnu-grep = {}
|
|
ripgrep = {}
|
|
sodium = {}
|
|
|
|
# Games
|
|
dosbox = {}
|
|
freedoom = {}
|
|
neverball = {}
|
|
prboom = {}
|
|
redox-games = {}
|
|
sopwith = {}
|
|
syobonaction = {}
|
|
|
|
# Demos
|
|
acid = {}
|
|
nushell = {}
|
|
orbclient = {}
|
|
pixelcannon = {}
|
|
rodioplay = {}
|
|
gears = {}
|
|
|
|
# MIDI
|
|
freepats = {}
|
|
|
|
[[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 #
|
|
# #
|
|
##############################################################################
|
|
"""
|