Add x11 filesystem config

This commit is contained in:
Jeremy Soller 2025-05-04 21:44:53 -06:00
parent 6ea02cd39b
commit 0a22d926da
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA
2 changed files with 40 additions and 0 deletions

37
config/x11.toml Normal file
View File

@ -0,0 +1,37 @@
# X11 configuration
include = ["desktop.toml"]
# Override the default settings here
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 2048
# Package settings
[packages]
gtk3 = {}
mesa-x11 = {}
mesa-demos-x11 = {}
twm = {}
xeyes = {}
xinit = {}
xkbcomp = {}
xkbutils = {}
xkeyboard-config = {}
xserver-xorg = {}
xserver-xorg-video-dummy = {}
[[files]]
path = "/usr/lib/init.d/20_xenv"
data = """
export DISPLAY :0
"""
[[files]]
path = "/usr/lib/init.d/40_x"
data = """
X :0 -verbose 6
"""

3
config/x86_64/x11.toml Normal file
View File

@ -0,0 +1,3 @@
# X11 configuration
include = ["../x11.toml"]