Compare commits
No commits in common. "614fdd5ebe07c4e9906454ae77eac5992cf05905" and "2ec74db25a441a6e5a058c6d0ef95f84fb4a4346" have entirely different histories.
614fdd5ebe
...
2ec74db25a
12 changed files with 194 additions and 197 deletions
25
.github/workflows/build.yml
vendored
25
.github/workflows/build.yml
vendored
|
|
@ -1,18 +1,14 @@
|
||||||
name: bluebuild
|
name: bluebuild
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron:
|
- cron: "00 07 * * *" # build at 07:00 UTC every day
|
||||||
"00 18 * * *" # build at 18:00 UTC every day
|
# (1:20 hours after last ublue images start building)
|
||||||
# (12 hours after last ublue images start building)
|
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
paths-ignore: # don't rebuild if only documentation has changed
|
||||||
- "**.md"
|
- "**.md"
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch: # allow manually triggering builds
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
jobs:
|
jobs:
|
||||||
bluebuild:
|
bluebuild:
|
||||||
name: Build Custom Image
|
name: Build Custom Image
|
||||||
|
|
@ -22,17 +18,20 @@ jobs:
|
||||||
packages: write
|
packages: write
|
||||||
id-token: write
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false # stop GH from cancelling all matrix builds if one fails
|
||||||
matrix:
|
matrix:
|
||||||
recipe:
|
recipe:
|
||||||
- bazzite-gnome.yml
|
- recipe_gnome.yml
|
||||||
- ucore-hci.yml
|
- recipe_gnome-nvidia-open.yml
|
||||||
steps:
|
steps:
|
||||||
|
# the build is fully handled by the reusable github action
|
||||||
- name: Build Custom Image
|
- name: Build Custom Image
|
||||||
uses: blue-build/github-action@v1.11
|
uses: blue-build/github-action@v1.8
|
||||||
with:
|
with:
|
||||||
recipe: ${{ matrix.recipe }}
|
recipe: ${{ matrix.recipe }}
|
||||||
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
|
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
|
||||||
registry_token: ${{ github.token }}
|
registry_token: ${{ github.token }}
|
||||||
pr_event_number: ${{ github.event.number }}
|
pr_event_number: ${{ github.event.number }}
|
||||||
maximize_build_space: true
|
|
||||||
|
# enabled by default, disable if your image is small and you want faster builds
|
||||||
|
maximize_build_space: false
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
-----BEGIN PUBLIC KEY-----
|
-----BEGIN PUBLIC KEY-----
|
||||||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEy+mK2kDTNECEbjuzl0/OyO7PgXXs
|
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAESCLT/nZpT/cuJudCqEIzoCTJZPs3
|
||||||
NAKzbIqyh8tzNu4z+XV6kH/Jkvq8Hf1EYelfPiU2MlNLSrNFfr5CHBKelw==
|
ZdeBil6MG9FMJ7nGgj3+f1pSCAPHORz9WPLLAntu9iMp18rM0pN5fYyZLQ==
|
||||||
-----END PUBLIC KEY-----
|
-----END PUBLIC KEY-----
|
||||||
|
|
|
||||||
|
|
@ -1,62 +1,62 @@
|
||||||
[docker-ce-stable]
|
[docker-ce-stable]
|
||||||
name=Docker CE Stable - $basearch
|
name=Docker CE Stable - $basearch
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/$basearch/stable
|
baseurl=https://download.docker.com/linux/fedora/42/$basearch/stable
|
||||||
enabled=1
|
enabled=1
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-stable-debuginfo]
|
[docker-ce-stable-debuginfo]
|
||||||
name=Docker CE Stable - Debuginfo $basearch
|
name=Docker CE Stable - Debuginfo $basearch
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/debug-$basearch/stable
|
baseurl=https://download.docker.com/linux/fedora/42/debug-$basearch/stable
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-stable-source]
|
[docker-ce-stable-source]
|
||||||
name=Docker CE Stable - Sources
|
name=Docker CE Stable - Sources
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/source/stable
|
baseurl=https://download.docker.com/linux/fedora/42/source/stable
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-test]
|
[docker-ce-test]
|
||||||
name=Docker CE Test - $basearch
|
name=Docker CE Test - $basearch
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/$basearch/test
|
baseurl=https://download.docker.com/linux/fedora/42/$basearch/test
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-test-debuginfo]
|
[docker-ce-test-debuginfo]
|
||||||
name=Docker CE Test - Debuginfo $basearch
|
name=Docker CE Test - Debuginfo $basearch
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/debug-$basearch/test
|
baseurl=https://download.docker.com/linux/fedora/42/debug-$basearch/test
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-test-source]
|
[docker-ce-test-source]
|
||||||
name=Docker CE Test - Sources
|
name=Docker CE Test - Sources
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/source/test
|
baseurl=https://download.docker.com/linux/fedora/42/source/test
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-nightly]
|
[docker-ce-nightly]
|
||||||
name=Docker CE Nightly - $basearch
|
name=Docker CE Nightly - $basearch
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/$basearch/nightly
|
baseurl=https://download.docker.com/linux/fedora/42/$basearch/nightly
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-nightly-debuginfo]
|
[docker-ce-nightly-debuginfo]
|
||||||
name=Docker CE Nightly - Debuginfo $basearch
|
name=Docker CE Nightly - Debuginfo $basearch
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/debug-$basearch/nightly
|
baseurl=https://download.docker.com/linux/fedora/42/debug-$basearch/nightly
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
||||||
[docker-ce-nightly-source]
|
[docker-ce-nightly-source]
|
||||||
name=Docker CE Nightly - Sources
|
name=Docker CE Nightly - Sources
|
||||||
baseurl=https://download.docker.com/linux/fedora/43/source/nightly
|
baseurl=https://download.docker.com/linux/fedora/42/source/nightly
|
||||||
enabled=0
|
enabled=0
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
gpgkey=https://download.docker.com/linux/fedora/gpg
|
gpgkey=https://download.docker.com/linux/fedora/gpg
|
||||||
|
|
|
||||||
25
files/scripts/download_install_rpms.sh
Normal file
25
files/scripts/download_install_rpms.sh
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -oex pipefail
|
||||||
|
set +u
|
||||||
|
|
||||||
|
# from RPMs on Github
|
||||||
|
# Space-separated list of repo/package strings
|
||||||
|
repos="quexten/goldwarden"
|
||||||
|
|
||||||
|
# Loop through each repo/package
|
||||||
|
for repo_package in $repos; do
|
||||||
|
# Split the string into repo and package using parameter expansion
|
||||||
|
repo=${repo_package%/*}
|
||||||
|
package=${repo_package#*/}
|
||||||
|
|
||||||
|
# Fetch the latest release download URL for .rpm assets
|
||||||
|
download_url=$(wget -qO- "https://api.github.com/repos/$repo/$package/releases/latest" \
|
||||||
|
| jq -r '.assets[] | select(.name | match(".rpm")) | .browser_download_url')
|
||||||
|
|
||||||
|
# Download the asset as <PACKAGE>.rpm
|
||||||
|
wget -qO "$package.rpm" "$download_url"
|
||||||
|
|
||||||
|
# Install the package
|
||||||
|
rpm-ostree install "$package.rpm"
|
||||||
|
done
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
modules:
|
|
||||||
- type: files
|
|
||||||
files:
|
|
||||||
- source: system
|
|
||||||
destination: /
|
|
||||||
- type: dnf
|
|
||||||
repos:
|
|
||||||
files:
|
|
||||||
- docker-ce.repo
|
|
||||||
keys:
|
|
||||||
- https://download.docker.com/linux/fedora/gpg
|
|
||||||
group-install:
|
|
||||||
with-optional: true
|
|
||||||
packages:
|
|
||||||
- development-tools
|
|
||||||
- c-development
|
|
||||||
remove:
|
|
||||||
packages:
|
|
||||||
- moby-engine
|
|
||||||
- docker-cli
|
|
||||||
install:
|
|
||||||
packages:
|
|
||||||
- usbguard
|
|
||||||
- android-tools
|
|
||||||
- arm-image-installer
|
|
||||||
- hunspell-devel
|
|
||||||
- zsh
|
|
||||||
- autofs
|
|
||||||
- wireguard-tools
|
|
||||||
- trash-cli
|
|
||||||
- git
|
|
||||||
- git-filter-repo
|
|
||||||
- firewall-config
|
|
||||||
- alsa-tools
|
|
||||||
- libappstream-glib
|
|
||||||
- htop
|
|
||||||
- glances
|
|
||||||
- ansible
|
|
||||||
- docker-ce
|
|
||||||
- docker-ce-cli
|
|
||||||
- containerd.io
|
|
||||||
- docker-buildx-plugin
|
|
||||||
- docker-compose-plugin
|
|
||||||
- freeipa-client
|
|
||||||
- chromium-headless
|
|
||||||
- type: systemd
|
|
||||||
system:
|
|
||||||
enabled:
|
|
||||||
- docker.service
|
|
||||||
- type: signing
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
---
|
|
||||||
# yaml-language-server: $schema=https://schema.blue-build.org/recipe-v1.json
|
|
||||||
name: bazzite-gnome-badblocks
|
|
||||||
description: Customizations of bazzite-gnome with all video drivers for personal use
|
|
||||||
|
|
||||||
base-image: ghcr.io/ublue-os/bazzite-gnome-nvidia-open
|
|
||||||
image-version: latest
|
|
||||||
|
|
||||||
modules:
|
|
||||||
- from-file: base.yml
|
|
||||||
- from-file: gui.yml
|
|
||||||
- type: files
|
|
||||||
files:
|
|
||||||
- source: firmware
|
|
||||||
destination: /lib/firmware/
|
|
||||||
- type: dnf
|
|
||||||
install:
|
|
||||||
packages:
|
|
||||||
- mpv_inhibit_gnome
|
|
||||||
- git-credential-libsecret
|
|
||||||
- gtk-murrine-engine
|
|
||||||
- gnome-boxes
|
|
||||||
- fedora-chromium-config-gnome
|
|
||||||
- type: gnome-extensions
|
|
||||||
install:
|
|
||||||
- 6 # Applications Menu
|
|
||||||
- 1460 # Vitals
|
|
||||||
- 1160 # Dash to Panel
|
|
||||||
- 97 # Coverflow Alt-Tab
|
|
||||||
- 8671 # All-in-One Clipboard
|
|
||||||
- 7856 # Mouse Tail
|
|
||||||
- 8971 # Lock Guard
|
|
||||||
- 4338 # Allow Locked Remote Desktop
|
|
||||||
# Below are provided currently by Bazzite
|
|
||||||
#- 615 # *AppIndicator and KStatusNotifierItem Support
|
|
||||||
#- 8760 # *Add to Steam
|
|
||||||
#- 3193 # *Blur my Shell
|
|
||||||
#- 517 # *Caffeine
|
|
||||||
#- 3740 # *Compiz alike magic lamp effect
|
|
||||||
#- 3210 # *Compiz windows effect
|
|
||||||
#- 7215 # *Restart To
|
|
||||||
#- 19 # *User Themes
|
|
||||||
#- 1319 # *GSConnect (Commented out as this extension will not work if installed system-wide without compile-time modifications, bazzite includes a modified version)
|
|
||||||
#- 4451 # *Logo Menu (Commented out as Bazzite includes customizations with their install)
|
|
||||||
- type: gschema-overrides
|
|
||||||
include:
|
|
||||||
- zz1-power-button-settings.gschema.override
|
|
||||||
130
recipes/common-modules.yml
Normal file
130
recipes/common-modules.yml
Normal file
|
|
@ -0,0 +1,130 @@
|
||||||
|
modules:
|
||||||
|
- type: script
|
||||||
|
scripts:
|
||||||
|
- download_install_rpms.sh
|
||||||
|
- type: files
|
||||||
|
files:
|
||||||
|
- source: system/lib/firmware/
|
||||||
|
destination: /lib/firmware/
|
||||||
|
- type: files
|
||||||
|
files:
|
||||||
|
- source: system/etc/modprobe.d/
|
||||||
|
destination: /etc/modprobe.d/
|
||||||
|
- type: dnf
|
||||||
|
repos:
|
||||||
|
files:
|
||||||
|
- https://packages.microsoft.com/yumrepos/vscode/config.repo
|
||||||
|
- docker-ce.repo
|
||||||
|
keys:
|
||||||
|
- https://packages.microsoft.com/keys/microsoft.asc
|
||||||
|
- https://download.docker.com/linux/fedora/gpg
|
||||||
|
group-install:
|
||||||
|
with-optional: true
|
||||||
|
packages:
|
||||||
|
- development-tools
|
||||||
|
- c-development
|
||||||
|
install:
|
||||||
|
packages:
|
||||||
|
- vlc
|
||||||
|
- usbguard
|
||||||
|
- android-tools
|
||||||
|
- arm-image-installer
|
||||||
|
- hunspell-devel
|
||||||
|
- zsh
|
||||||
|
- libvirt
|
||||||
|
- virt-manager
|
||||||
|
- autofs
|
||||||
|
- gstreamer1-plugins-ugly-free
|
||||||
|
- gstreamer1-plugins-bad-free
|
||||||
|
- gstreamer1-plugins-bad-free-extras
|
||||||
|
- gstreamer1-plugins-good
|
||||||
|
- gstreamer1-plugins-good-extras
|
||||||
|
- gstreamer1-plugins-base
|
||||||
|
- gstreamer1-plugins-base-tools
|
||||||
|
- wireguard-tools
|
||||||
|
- trash-cli
|
||||||
|
- git
|
||||||
|
- git-credential-libsecret
|
||||||
|
- gtk-murrine-engine
|
||||||
|
- firewall-config
|
||||||
|
- alsa-tools
|
||||||
|
- libappstream-glib
|
||||||
|
- htop
|
||||||
|
- glances
|
||||||
|
- ansible
|
||||||
|
- docker-ce
|
||||||
|
- docker-ce-cli
|
||||||
|
- containerd.io
|
||||||
|
- docker-buildx-plugin
|
||||||
|
- docker-compose-plugin
|
||||||
|
- cockpit
|
||||||
|
- cockpit-composer
|
||||||
|
- cockpit-files
|
||||||
|
- cockpit-machines
|
||||||
|
- cockpit-networkmanager
|
||||||
|
- cockpit-ostree
|
||||||
|
- cockpit-podman
|
||||||
|
- cockpit-selinux
|
||||||
|
- cockpit-sosreport
|
||||||
|
- cockpit-storaged
|
||||||
|
- gnome-boxes
|
||||||
|
- bottles
|
||||||
|
- code
|
||||||
|
- type: fonts
|
||||||
|
fonts:
|
||||||
|
nerd-fonts:
|
||||||
|
- FiraCode
|
||||||
|
- Hack
|
||||||
|
- SourceCodePro
|
||||||
|
- Terminus
|
||||||
|
- JetBrainsMono
|
||||||
|
- NerdFontsSymbolsOnly
|
||||||
|
google-fonts:
|
||||||
|
- Roboto
|
||||||
|
- Lexend
|
||||||
|
- type: gnome-extensions
|
||||||
|
install:
|
||||||
|
- 3628 # ArcMenu
|
||||||
|
- 1460 # Vitals
|
||||||
|
- 1160 # Dash to Panel
|
||||||
|
- 97 # Coverflow Alt-Tab
|
||||||
|
- 779 # Clipboard Indicator
|
||||||
|
- type: gschema-overrides
|
||||||
|
include:
|
||||||
|
- zz1-power-button-settings.gschema.override
|
||||||
|
- type: default-flatpaks
|
||||||
|
notify: true
|
||||||
|
system:
|
||||||
|
install:
|
||||||
|
- net.nokyan.Resources
|
||||||
|
- org.gimp.GIMP
|
||||||
|
- org.libreoffice.LibreOffice
|
||||||
|
- page.codeberg.libre_menu_editor.LibreMenuEditor
|
||||||
|
- us.zoom.Zoom
|
||||||
|
- com.bitwarden.desktop
|
||||||
|
- dev.zed.Zed
|
||||||
|
- dev.goats.xivlauncher
|
||||||
|
- com.github.zocker_160.SyncThingy
|
||||||
|
- io.github.vikdevelop.SaveDesktop
|
||||||
|
- md.obsidian.Obsidian
|
||||||
|
- org.strawberrymusicplayer.strawberry
|
||||||
|
- com.discordapp.Discord
|
||||||
|
- com.borgbase.Vorta
|
||||||
|
- org.mozilla.Thunderbird
|
||||||
|
- io.gitlab.librewolf-community
|
||||||
|
- io.github.ungoogled_software.ungoogled_chromium
|
||||||
|
remove:
|
||||||
|
- com.usebottles.bottles
|
||||||
|
- org.gnome.Boxes
|
||||||
|
- org.videolan.VLC
|
||||||
|
user:
|
||||||
|
remove:
|
||||||
|
- com.usebottles.bottles
|
||||||
|
- org.gnome.Boxes
|
||||||
|
- org.videolan.VLC
|
||||||
|
- type: systemd
|
||||||
|
system:
|
||||||
|
enabled:
|
||||||
|
- docker.service
|
||||||
|
- type: signing
|
||||||
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
modules:
|
|
||||||
- type: fonts
|
|
||||||
fonts:
|
|
||||||
nerd-fonts:
|
|
||||||
- FiraCode
|
|
||||||
- Hack
|
|
||||||
- SourceCodePro
|
|
||||||
- Terminus
|
|
||||||
- JetBrainsMono
|
|
||||||
- NerdFontsSymbolsOnly
|
|
||||||
google-fonts:
|
|
||||||
- Roboto
|
|
||||||
- Lexend
|
|
||||||
- type: dnf
|
|
||||||
repos:
|
|
||||||
files:
|
|
||||||
- https://packages.microsoft.com/yumrepos/vscode/config.repo
|
|
||||||
- https://copr.fedorainfracloud.org/coprs/lizardbyte/stable/repo/fedora-43/lizardbyte-stable-fedora-43.repo
|
|
||||||
keys:
|
|
||||||
- https://packages.microsoft.com/keys/microsoft.asc
|
|
||||||
- https://download.copr.fedorainfracloud.org/results/lizardbyte/stable/pubkey.gpg
|
|
||||||
install:
|
|
||||||
packages:
|
|
||||||
- vlc
|
|
||||||
- mpv
|
|
||||||
- libvirt
|
|
||||||
- virt-manager
|
|
||||||
- code
|
|
||||||
- sunshine
|
|
||||||
- chromium
|
|
||||||
- chromedriver
|
|
||||||
- gstreamer1-plugins-ugly-free
|
|
||||||
- gstreamer1-plugins-bad-free
|
|
||||||
- gstreamer1-plugins-bad-free-extras
|
|
||||||
- gstreamer1-plugins-good
|
|
||||||
- gstreamer1-plugins-good-extras
|
|
||||||
- gstreamer1-plugins-base
|
|
||||||
- gstreamer1-plugins-base-tools
|
|
||||||
- type: default-flatpaks@v1 # only v1 allows removals
|
|
||||||
notify: true
|
|
||||||
system:
|
|
||||||
install:
|
|
||||||
- net.nokyan.Resources
|
|
||||||
- org.gimp.GIMP
|
|
||||||
- org.libreoffice.LibreOffice
|
|
||||||
- page.codeberg.libre_menu_editor.LibreMenuEditor
|
|
||||||
- us.zoom.Zoom
|
|
||||||
- com.bitwarden.desktop
|
|
||||||
- dev.zed.Zed
|
|
||||||
- dev.goats.xivlauncher
|
|
||||||
- com.github.zocker_160.SyncThingy
|
|
||||||
- io.github.vikdevelop.SaveDesktop
|
|
||||||
- md.obsidian.Obsidian
|
|
||||||
- org.strawberrymusicplayer.strawberry
|
|
||||||
- com.discordapp.Discord
|
|
||||||
- com.borgbase.Vorta
|
|
||||||
- org.mozilla.Thunderbird
|
|
||||||
- io.gitlab.librewolf-community
|
|
||||||
- io.github.ungoogled_software.ungoogled_chromium
|
|
||||||
remove:
|
|
||||||
- org.gnome.Boxes
|
|
||||||
- org.videolan.VLC
|
|
||||||
user:
|
|
||||||
remove:
|
|
||||||
- org.gnome.Boxes
|
|
||||||
- org.videolan.VLC
|
|
||||||
8
recipes/recipe_gnome-nvidia-open.yml
Normal file
8
recipes/recipe_gnome-nvidia-open.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
name: bazzite-badblocks-gnome-nvidia-open
|
||||||
|
description: badblocks's custom bazzite-gnome-nvidia-open build
|
||||||
|
|
||||||
|
base-image: ghcr.io/ublue-os/bazzite-gnome-nvidia-open
|
||||||
|
image-version: latest
|
||||||
|
|
||||||
|
modules:
|
||||||
|
- from-file: common-modules.yml
|
||||||
8
recipes/recipe_gnome.yml
Normal file
8
recipes/recipe_gnome.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
name: bazzite-badblocks-gnome
|
||||||
|
description: badblocks's custom bazzite-gnome build
|
||||||
|
|
||||||
|
base-image: ghcr.io/ublue-os/bazzite-gnome
|
||||||
|
image-version: latest
|
||||||
|
|
||||||
|
modules:
|
||||||
|
- from-file: common-modules.yml
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
---
|
|
||||||
# yaml-language-server: $schema=https://schema.blue-build.org/recipe-v1.json
|
|
||||||
name: ucore-hci-badblocks
|
|
||||||
description: Customizations of ucore for personal use
|
|
||||||
|
|
||||||
base-image: ghcr.io/ublue-os/ucore-hci
|
|
||||||
image-version: lts
|
|
||||||
|
|
||||||
modules:
|
|
||||||
- from-file: base.yml
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue