From 156be4fe46abc134e5aecc3c81d67af723640c8a Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Wed, 4 Dec 2024 16:25:17 -0500 Subject: [PATCH 1/2] fix: Make the recipe pass validation for new users --- recipes/recipe.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/recipes/recipe.yml b/recipes/recipe.yml index 34b2ab9..efc6470 100644 --- a/recipes/recipe.yml +++ b/recipes/recipe.yml @@ -1,3 +1,5 @@ +--- +# yaml-language-server: $schema=https://schema.blue-build.org/recipe-v1.json # image will be published to ghcr.io// name: template # description will be included in the image's metadata @@ -17,32 +19,32 @@ modules: - type: rpm-ostree repos: - # - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo + - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo install: - # - micro - # - starship + - micro + - starship remove: # example: removing firefox (in favor of the flatpak) # "firefox" is the main package, "firefox-langpacks" is a dependency - # - firefox - # - firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case) + - firefox + - firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case) - type: default-flatpaks notify: true # Send notification after install/uninstall is finished (true/false) system: # If no repo information is specified, Flathub will be used by default # repo-url: https://dl.flathub.org/repo/flathub.flatpakrepo - # repo-name: flathub - # repo-title: "Flathub (system-wide)" # Optional; this sets the remote's user-facing name in graphical frontends like GNOME Software + repo-name: flathub + repo-title: "Flathub (system-wide)" # Optional; this sets the remote's user-facing name in graphical frontends like GNOME Software install: - # - org.mozilla.firefox - # - org.gnome.Loupe + - org.mozilla.firefox + - org.gnome.Loupe # - one.ablaze.floorp//lightning # This is an example of flatpak which has multiple branches in selection (flatpak//branch). # Flatpak runtimes are not supported (like org.winehq.Wine//stable-23.08), # only normal flatpak applications are (like Floorp Lightning web browser in this example). # Installing different branches of the same Flatpak is not supported. remove: - # - org.gnome.eog + - org.gnome.eog - type: signing # this sets up the proper policy & signing files for signed images to work fully From c36f4f042ccfe0ae44a95b74357e9a546d16de96 Mon Sep 17 00:00:00 2001 From: fiftydinar <65243233+fiftydinar@users.noreply.github.com> Date: Wed, 4 Dec 2024 22:29:38 +0100 Subject: [PATCH 2/2] chore: Increase image-version to `41` --- recipes/recipe.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/recipe.yml b/recipes/recipe.yml index efc6470..3c55698 100644 --- a/recipes/recipe.yml +++ b/recipes/recipe.yml @@ -7,7 +7,7 @@ description: This is my personal OS image. # the base image to build on top of (FROM) and the version tag to use base-image: ghcr.io/ublue-os/silverblue-main -image-version: 40 # latest is also supported if you want new updates ASAP +image-version: 41 # latest is also supported if you want new updates ASAP # module configuration, executed in order # you can include multiple instances of the same module