From 0f5f896a7655090bee18be07cd380ab54fcb3f60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Torres=20P=C3=A9rez?= Date: Mon, 1 Sep 2025 17:44:42 +0200 Subject: [PATCH 1/2] chore: updated main template recipe to use the DNF module instead of rpm-ostree --- recipes/recipe.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/recipes/recipe.yml b/recipes/recipe.yml index 8a3f321..ecef486 100644 --- a/recipes/recipe.yml +++ b/recipes/recipe.yml @@ -17,17 +17,20 @@ modules: - source: system destination: / # copies files/system/* (* means everything inside it) into your image's root folder / - - type: rpm-ostree + - type: dnf repos: - - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo + copr: + - atim/starship install: - - micro - - starship + packages: + - 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) + packages: + # 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) - type: default-flatpaks configurations: @@ -40,4 +43,3 @@ modules: - scope: user # Also add Flathub user repo, but no user packages - type: signing # this sets up the proper policy & signing files for signed images to work fully - From b4d47c3b1cd3cca4eb88acb1e2b03496e41f5145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Torres=20P=C3=A9rez?= Date: Mon, 1 Sep 2025 17:45:02 +0200 Subject: [PATCH 2/2] chore: updated main template to Fedora 42 --- recipes/recipe.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/recipe.yml b/recipes/recipe.yml index ecef486..37d93c6 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: 41 # latest is also supported if you want new updates ASAP +image-version: 42 # latest is also supported if you want new updates ASAP # module configuration, executed in order # you can include multiple instances of the same module