recipes/ directory of the repository. The main entry point is recipe.yml, which includes all the other recipes in a defined order.
Editing a recipe file has no effect on a running system. You must rebuild the image and rebase to it for changes to take effect.
Recipe files
recipe.yml — main orchestrator
recipe.yml — main orchestrator
The top-level recipe. It sets the base image (
ghcr.io/ublue-os/bazzite-dx-nvidia:latest) and includes all the common-* recipes in order. This is the only file you pass to the BlueBuild build command. Every other recipe flows through this one.For the authoritative recipe format and available fields, see the BlueBuild recipe documentation.common-branding.yml — branding assets
common-branding.yml — branding assets
Copies custom wallpapers, icons, and logo files into the image. This is where Agate’s visual identity is baked in — anything you want present on first boot goes here.
common-development.yml — development tools
common-development.yml — development tools
Installs development tools, runtimes, and configuration files used for software development. This includes compilers, language toolchains, container tooling, and IDE integrations.
common-dotfiles.yml — dotfiles manager integration
common-dotfiles.yml — dotfiles manager integration
Sets up the dotfiles manager (
yadm) and any configuration needed to bootstrap it on a fresh install. This ensures your personal configuration is applied automatically after rebase.common-flatpaks.yml — Flatpak applications
common-flatpaks.yml — Flatpak applications
Declares the list of Flatpak applications to install from Flathub and other remotes. Flatpaks are managed separately from RPMs to keep the two package sources distinct and easy to audit.
common-packages.yml — RPM packages
common-packages.yml — RPM packages
Lists all extra RPM packages to layer on top of the base image. Packages are organized by category (development, security, utilities, etc.) and pulled from Fedora’s repositories and any enabled COPR repos.
common-theming.yml — theme installation
common-theming.yml — theme installation
Installs desktop theme assets into the image: Catppuccin for KDE, the Kora icon theme, and the PlasMusic widget. These assets are baked into the image so they are available immediately after rebase.
common-windowmanager.yml — window manager session
common-windowmanager.yml — window manager session
Configures the Niri Wayland compositor as an alternative session alongside KDE Plasma. This recipe installs Niri and registers its session with the display manager so you can select it at login.
Modifying recipes when building from source
If you are building your own image from the Agate source, you can edit any recipe file to customize the result:- Open the relevant
recipes/*.ymlfile in your editor. - Add, remove, or modify entries according to the BlueBuild module documentation.
- Rebuild the image — your changes will be included in the next build.
Further reading
- BlueBuild documentation — full reference for recipe syntax, available modules, and image configuration options.