From 4803093f174deeb62b63fbb478bb09d695609e01 Mon Sep 17 00:00:00 2001 From: fiftydinar <65243233+fiftydinar@users.noreply.github.com> Date: Fri, 6 Dec 2024 20:43:59 +0100 Subject: [PATCH] feat(akmods): Add additional available akmod options to schema --- modules/akmods/akmods.tsp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/akmods/akmods.tsp b/modules/akmods/akmods.tsp index 73639ad3..1f7a4149 100644 --- a/modules/akmods/akmods.tsp +++ b/modules/akmods/akmods.tsp @@ -9,15 +9,19 @@ model AkmodsModule { type: "akmods"; /** The kernel your images uses. - * - main: stock kernel / main and nvidia images + * - main: stock Fedora kernel / main and nvidia images * - asus: asus kernel / asus images - * - fsync: fsync kernel / bazzite images + * - fsync: fsync kernel / not used in any Universal Blue images + * - fsync-ba: fsync kernel, stable version / not used in any Universal Blue images * - surface: surface kernel / surface images + * - coreos-stable: stock CoreOS kernel / uCore stable images + * - coreos-testing: stock CoreOS Testing kernel / uCore testing images + * - bazzite: Bazzite's kernel / bazzite images */ - base?: "main" | "asus" | "fsync" | "surface" = "main"; + base?: "main" | "asus" | "fsync" | "fsync-ba" | "surface" | "coreos-stable" | "coreos-testing" | "bazzite" = "main"; /** List of akmods to install. * See all available akmods here: https://github.com/ublue-os/akmods#kmod-packages */ install: Array; -} \ No newline at end of file +}