redox/config/x86_64/demo.toml

155 lines
4.8 KiB
TOML
Raw Normal View History

##############################################################################
# Redox Demo Configuration #
# #
# This file defines the setup of the Redox Demo system. #
# #
# The "[packages]" section specifies what packages are installed in the #
# filesystem prior to booting the system. During build, these packages must #
# have a recipe defined in the config folder (see the Redox Book, #
# Chapter 5.1). The first group of packages is mandatory for the system to #
# function, although some items can be removed for special builds, #
# e.g. The Orbital GUI is not required for a headless server. #
# #
# Items in the "Developer Tools" and "Games" section are optional. You can #
# add your own programs here. #
# #
# The "[users]" section creates user id's and passwords. Each user will have #
# a home directory at boot. #
# #
# The "[[files]]" section contains files needed by the system. If you need #
# create a file, e.g. a config file for a program you are adding, you can do #
# it here. #
# #
##############################################################################
2024-01-04 19:08:53 +01:00
include = ["../net.toml"]
# General settings
[general]
# Filesystem size in MiB
2023-11-15 23:34:28 +01:00
filesystem_size = 1536
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
audiod = {}
2023-09-10 02:59:33 +02:00
bash = {}
bootloader = {}
ca-certificates = {}
contain = {}
coreutils = {}
2023-11-15 22:53:57 +01:00
cosmic-edit = {}
2023-11-15 23:34:28 +01:00
cosmic-icons = {}
diffutils = {}
drivers = {}
escalated = {}
extrautils = {}
findutils = {}
installer = {}
installer-gui = {}
intel-one-mono = {}
ion = {}
ipcd = {}
netdb = {}
netsurf = {}
orbdata = {}
orbital = {}
orbterm = {}
orbutils = {}
pkgutils = {}
2023-11-15 23:34:28 +01:00
pop-icon-theme = {}
ptyd = {}
redoxfs = {}
relibc = {}
resist = {}
smith = {}
userutils = {}
uutils = {}
# Apps
periodictable = {}
# Shell Apps
2023-03-11 17:56:49 +01:00
binutils = {}
curl = {}
git = {}
gnu-grep = {}
2023-03-11 17:56:49 +01:00
ripgrep = {}
sodium = {}
vim = {}
# Games
dosbox = {}
freedoom = {}
neverball = {}
prboom = {}
2023-11-15 20:52:00 +01:00
redox-games = {}
sopwith = {}
syobonaction = {}
# Demos
2023-03-10 17:57:16 +01:00
acid = {}
2023-09-13 03:18:55 +02:00
nushell = {}
orbclient = {}
2022-12-01 22:36:33 +01:00
pixelcannon = {}
rodioplay = {}
2023-03-11 17:56:49 +01:00
gears = {}
2022-11-21 17:01:36 +01:00
# MIDI
freepats = {}
[[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 = "/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 #
# #
##############################################################################
"""