Skip to content

Commit 5cdcd18

Browse files
authored
Merge pull request #54 from franute/update-template-dnf-module
Update template to use dnf module and image version to F42
2 parents 309b916 + b4d47c3 commit 5cdcd18

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

recipes/recipe.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: This is my personal OS image.
77

88
# the base image to build on top of (FROM) and the version tag to use
99
base-image: ghcr.io/ublue-os/silverblue-main
10-
image-version: 41 # latest is also supported if you want new updates ASAP
10+
image-version: 42 # latest is also supported if you want new updates ASAP
1111

1212
# module configuration, executed in order
1313
# you can include multiple instances of the same module
@@ -17,17 +17,20 @@ modules:
1717
- source: system
1818
destination: / # copies files/system/* (* means everything inside it) into your image's root folder /
1919

20-
- type: rpm-ostree
20+
- type: dnf
2121
repos:
22-
- https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
22+
copr:
23+
- atim/starship
2324
install:
24-
- micro
25-
- starship
25+
packages:
26+
- micro
27+
- starship
2628
remove:
27-
# example: removing firefox (in favor of the flatpak)
28-
# "firefox" is the main package, "firefox-langpacks" is a dependency
29-
- firefox
30-
- firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case)
29+
packages:
30+
# example: removing firefox (in favor of the flatpak)
31+
# "firefox" is the main package, "firefox-langpacks" is a dependency
32+
- firefox
33+
- firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case)
3134

3235
- type: default-flatpaks
3336
configurations:
@@ -40,4 +43,3 @@ modules:
4043
- scope: user # Also add Flathub user repo, but no user packages
4144

4245
- type: signing # this sets up the proper policy & signing files for signed images to work fully
43-

0 commit comments

Comments
 (0)