2025-11-22 09:35:03 +02:00
|
|
|
---
|
|
|
|
|
# yaml-language-server: $schema=https://schema.blue-build.org/recipe-v1.json
|
|
|
|
|
# image will be published to ghcr.io/<user>/<name>
|
2025-11-22 09:35:06 +02:00
|
|
|
name: randofin-os
|
2025-11-22 09:35:03 +02:00
|
|
|
# description will be included in the image's metadata
|
2025-11-22 09:41:55 +02:00
|
|
|
description: This is my personal spin based on the latest bluefin image.
|
2025-11-22 09:35:03 +02:00
|
|
|
|
|
|
|
|
# the base image to build on top of (FROM) and the version tag to use
|
2025-11-22 09:41:55 +02:00
|
|
|
base-image: ghcr.io/ublue-os/bluefin-dx
|
|
|
|
|
image-version: latest # latest is also supported if you want new updates ASAP
|
2025-11-22 09:35:03 +02:00
|
|
|
|
|
|
|
|
# module configuration, executed in order
|
|
|
|
|
# you can include multiple instances of the same module
|
2025-11-22 10:49:43 +02:00
|
|
|
modules:
|
|
|
|
|
- type: files
|
|
|
|
|
files:
|
|
|
|
|
- source: system
|
|
|
|
|
destination: / # copies files/system/* (* means everything inside it) into your image's root folder /
|
2025-11-22 09:35:03 +02:00
|
|
|
|
2025-11-22 10:49:43 +02:00
|
|
|
- type: dnf
|
|
|
|
|
install:
|
|
|
|
|
packages:
|
|
|
|
|
- syncthing
|
|
|
|
|
- waydroid
|
|
|
|
|
remove:
|
|
|
|
|
packages:
|
|
|
|
|
- code
|
|
|
|
|
- docker-ce
|
|
|
|
|
- docker-ce-cli
|
|
|
|
|
- docker-ce-rootless-extras
|
|
|
|
|
- docker-compose-plugin
|
|
|
|
|
- docker-model-plugin
|
2025-11-22 09:35:03 +02:00
|
|
|
|
2025-11-22 09:43:43 +02:00
|
|
|
# - type: default-flatpaks
|
|
|
|
|
# configurations:
|
|
|
|
|
# - notify: true # Send notification after install/uninstall is finished (true/false)
|
|
|
|
|
# scope: system
|
|
|
|
|
# # If no repo information is specified, Flathub will be used by default
|
|
|
|
|
# install: # system flatpaks we want all users to have and not remove
|
|
|
|
|
# - org.mozilla.firefox
|
|
|
|
|
# - org.gnome.Loupe
|
|
|
|
|
# - scope: user # Also add Flathub user repo, but no user packages
|
2025-11-22 09:35:03 +02:00
|
|
|
|
|
|
|
|
- type: signing # this sets up the proper policy & signing files for signed images to work fully
|