* feat(bling): rpmfusion & negativo17 repo helpers * chore: Make adding negativo repo more robust * chore: Make sure that priority is set when negativo repo is installed * chore: Improve RPMFusion repo install robustness * chore: Fix some indendation * chore: Fix some indetation pt. 2 * chore: Install all RPMFusion repos in cases when only free or non-free repo is installed * chore: Install all RPMFusion repos in cases when only free or non-free repo is installed pt. 2 --------- Co-authored-by: fiftydinar <65243233+fiftydinar@users.noreply.github.com>
13 lines
478 B
Text
13 lines
478 B
Text
import "@typespec/json-schema";
|
|
using TypeSpec.JsonSchema;
|
|
|
|
@jsonSchema("/modules/bling.json")
|
|
model BlingModule {
|
|
/** The bling module can be used to pull in small "bling" into your image.
|
|
* https://blue-build.org/reference/modules/bling/
|
|
*/
|
|
type: "bling";
|
|
|
|
/** List of bling submodules to run / things to install onto your system. */
|
|
install: Array<"rpmfusion" | "negativo17" | "ublue-update" | "1password" | "dconf-update-service" | "gnome-vrr">;
|
|
}
|