generated from blue-build/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cosign key and switch to kinoite image
- Loading branch information
mh
committed
Oct 22, 2024
1 parent
1646ae3
commit 794bad9
Showing
2 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-----BEGIN PUBLIC KEY----- | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEP42H58yIV98/GrQkArabAnsfLLjr | ||
MI848NLkUwI29cEnc6K8qVZESVrqxP0mB9e4NCSJ57kUf0BryiR77FN9HA== | ||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEi27/ASyCYRR7GO1/7tARwspPl1YL | ||
NUk6GeFc4sIFOPqIOvjBlWlIDu687C3yIxz6HlLXpLSy54EHeGnXiqhcJA== | ||
-----END PUBLIC KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
# image will be published to ghcr.io/<user>/<name> | ||
name: template | ||
name: kinoite-personal | ||
# description will be included in the image's metadata | ||
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 | ||
base-image: ghcr.io/ublue-os/kinoite-main | ||
image-version: latest # latest is also supported if you want new updates ASAP | ||
|
||
# module configuration, executed in order | ||
# you can include multiple instances of the same module | ||
modules: | ||
- type: files | ||
files: | ||
- source: system | ||
destination: / # copies files/system/* (* means everything inside it) into your image's root folder / | ||
# - type: files | ||
# files: | ||
# - source: system | ||
# destination: / # copies files/system/* (* means everything inside it) into your image's root folder / | ||
|
||
- type: rpm-ostree | ||
repos: | ||
# - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo | ||
install: | ||
# - 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) | ||
# - type: rpm-ostree | ||
# repos: | ||
# # - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo | ||
# install: | ||
# # - 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) | ||
|
||
- 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 | ||
install: | ||
# - 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 | ||
# - 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 | ||
# install: | ||
# # - 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 | ||
|
||
- type: signing # this sets up the proper policy & signing files for signed images to work fully | ||
|