Skip to content

Commit

Permalink
hi
Browse files Browse the repository at this point in the history
  • Loading branch information
detiber committed Dec 4, 2024
1 parent b29fc4d commit fc2241d
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ jobs:
matrix:
recipe:
# !! Add your recipes here
- recipe.yml
- beardy.yml
- beardy-bazzite.yml
- beardy-bazzite-deck.yml
steps:
# the build is fully handled by the reusable github action
# the build is fully handled by the reusable github action
- name: Build Custom Image
uses: blue-build/github-action@v1.7
with:
Expand Down
63 changes: 63 additions & 0 deletions recipes/beardy-bazzite-deck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# From: https://github.com/HikariKnight/Deckstation/blob/main/recipes/deckstation-deck.yml
name: beardy-bazzite-deck
# description will be included in the image's metadata
description: bazzite-deck with SDDM enabled

# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bazzite-deck
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:
- type: rpm-ostree
repos:
# - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
install:
# - micro
# - starship
- qemu
- virt-manager
- edk2-ovmf
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: files
files:
- source: system # copies files/system/ into your image's /.
destination: / # put configuration files you want in /etc/ on a booted system
# in /usr/etc/ in the image. read more in files module reference.

- 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: systemd
# system:
# enabled:
# - bazzite-snapper-setup.service

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

- type: script
scripts:
# Custom changes for deckstation
- sddm/enable-sddm.sh
- main/add-justfile.sh
- main/deckstation-setup.sh
65 changes: 65 additions & 0 deletions recipes/beardy-bazzite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# from: https://github.com/HikariKnight/Deckstation/blob/main/recipes/deckstation.yml
name: beardy-bazzite
# description will be included in the image's metadata
description: A workstation oriented version of bazzite desktop with native steam and gamescope

# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/bazzite-deck
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:
- type: rpm-ostree
repos:
# - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
install:
# - micro
# - starship
- qemu
- virt-manager
- edk2-ovmf
- samba
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: files
files:
- source: system # copies files/system/ into your image's /.
destination: / # put configuration files you want in /etc/ on a booted system
# in /usr/etc/ in the image. read more in files module reference.

- 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: systemd
# system:
# enabled:
# - bazzite-snapper-setup.service

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

- type: script
scripts:
# Custom changes for deckstation
- sddm/enable-sddm.sh
- sddm/disable-sddm-virtualkbd.sh
- main/add-justfile.sh
- main/deckstation-setup.sh
File renamed without changes.

0 comments on commit fc2241d

Please sign in to comment.