kamos/disk_config/iso.toml

33 lines
814 B
TOML
Raw Normal View History

# KAMOS Gaming OS - bootc-image-builder ISO config
# Used by `just build-iso` and the build-disk workflow.
# Reference: https://osbuild.org/docs/bootc/
[customizations]
hostname = "kamos"
[[customizations.user]]
name = "khalaf"
password = "changeme"
groups = ["wheel"]
[customizations.kernel]
# NVIDIA proprietary driver works best with the modules baked into Bazzite's
# kernel. `splash` enables Plymouth so the KAMOS boot splash actually shows.
# Don't add nomodeset unless you've fallen back to a recovery scenario.
append = "rhgb quiet splash"
[customizations.locale]
languages = ["en_US.UTF-8"]
keyboard = "us"
[customizations.timezone]
timezone = "UTC"
[[customizations.filesystem]]
mountpoint = "/"
minsize = "10 GiB"
[[customizations.filesystem]]
mountpoint = "/var"
minsize = "20 GiB"