Skip to content

Commit

Permalink
feat(akmods): Add additional available akmod options to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftydinar authored Dec 6, 2024
1 parent a044f60 commit 4803093
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions modules/akmods/akmods.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -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<string>;
}
}

0 comments on commit 4803093

Please sign in to comment.