Skip to content

Commit

Permalink
Renamed main images to 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
franute committed Dec 16, 2024
1 parent 1803198 commit 3b15f50
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 30 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
matrix:
recipe:
# !! Add your recipes here
- recipe.yml
- recipe-nvidia.yml
# - recipe.yml
- recipe-dev.yml
- recipe-dev-nvidia.yml
- recipe-home.yml
steps:
# the build is fully handled by the reusable github action
Expand Down
File renamed without changes.
17 changes: 17 additions & 0 deletions recipes/recipe-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
# yaml-language-server: $schema=https://schema.blue-build.org/recipe-v1.json
# image will be published to ghcr.io/<user>/<name>
name: nimbus-os
# 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: 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
modules:
- from-file: dev-recipe.yml

- type: signing # this sets up the proper policy & signing files for signed images to work fully
55 changes: 27 additions & 28 deletions recipes/recipe.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# yaml-language-server: $schema=https://schema.blue-build.org/recipe-v1.json
# image will be published to ghcr.io/<user>/<name>
name: nimbus-os
name: template
# description will be included in the image's metadata
description: This is my personal OS image.

Expand All @@ -12,34 +12,33 @@ 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
modules:
- from-file: dev-recipe.yml
- type: files
files:
- source: system
destination: / # copies files/system/* (* means everything inside it) into your image's root folder /

#- type: files
# files:
# - source: system/common
# 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
# install:
# - org.mozilla.firefox
# - org.gnome.Loupe
# remove:
# - org.gnome.eog
# user: {} # Also add Flathub user repo, but no user packages
- 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
install:
- org.mozilla.firefox
- org.gnome.Loupe
remove:
- org.gnome.eog
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

0 comments on commit 3b15f50

Please sign in to comment.