From bf7b9742ea6242f5f39d157868a4684c6ca1d2a7 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 5 Nov 2025 07:30:42 -0700 Subject: [PATCH] Add wayland config --- config/wayland.toml | 25 +++++++++++++++++++++++++ config/x86_64/wayland.toml | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 config/wayland.toml create mode 100644 config/x86_64/wayland.toml diff --git a/config/wayland.toml b/config/wayland.toml new file mode 100644 index 000000000..fca304def --- /dev/null +++ b/config/wayland.toml @@ -0,0 +1,25 @@ +# X11 configuration + +include = ["desktop.toml"] + +# Override the default settings here + +# General settings +[general] +# Filesystem size in MiB +filesystem_size = 4096 + +# Package settings +[packages] +mesa = {} +smallvil = {} +xkeyboard-config = {} + +[[files]] +path = "/usr/lib/init.d/30_wayland" +mode = 0o755 +data = """ +export XDG_RUNTIME_DIR /run/user/0 +mkdir -p $XDG_RUNTIME_DIR +env LD_DEBUG=all smallvil_smallvil +""" diff --git a/config/x86_64/wayland.toml b/config/x86_64/wayland.toml new file mode 100644 index 000000000..f842b0936 --- /dev/null +++ b/config/x86_64/wayland.toml @@ -0,0 +1,3 @@ +# Wayland configuration + +include = ["../wayland.toml"]