-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecipe-bazzite.yml
263 lines (244 loc) · 9.3 KB
/
recipe-bazzite.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# This file can only be edited inside the uBlue image's git repository.
# The image will be at "ghcr.io/yourusername/name".
name: ublue-whitesur-bazzite
# The native container image to build on top of.
# Warning: Non-uBlue images might not work properly, due to missing components.
base-image: ghcr.io/ublue-os/bazzite
# What Fedora version to use. Use an explicit version or `latest`.
# If you use `latest`, you will be automatically updated to the next major
# Fedora version, assuming the image you're using as your base container
# builds with the tag (all uBlue images do this).
fedora-version: 40
# This description will be visible in the container metadata.
description: A starting point for further customization of uBlue images. Make your own! https://ublue.it/making-your-own/
# These scripts will be executed during the container build.
# Place scripts in the "scripts/" dir and put the corresponding filenames here.
# Any files that aren't listed here won't be executed automatically, which
# means that you can place "helper" or "library" scripts in the folder too.
# You can use "autorun.sh" if you want an automatic runner.
scripts:
# "Pre" scripts run very early in the build, immediately after your custom
# repos have been imported (so that you can access those repos if necessary).
pre:
# Automatically runs script files within "scripts/pre/".
- autorun.sh
# Manually listed scripts.
# - example_pre.sh
# "Post" scripts run at the end of the build process.
post:
# Automatically runs script files within "scripts/post/".
- autorun.sh
# Manually listed scripts.
# - rpm-install.sh
# - post/bazzite/rm-steam-shortcut.sh
# Custom RPM configuration.
# These changes will be integrated into your custom image at the "system level".
rpm:
# Create these symlinks ../../usr/lib/opt/[name here] in /opt/[name here] to fix installing packages that add files to /opt while building the image
# function defined by optpackages.sh from https://github.com/AuraHerreroRuiz/auraos/blob/live/scripts/pre/optpackages.sh
# optfix:
# - wine-staging
# - teamviewer
# A list of urls of ".repo" files that should be added to your system.
# This is the proper way to add custom COPR repos to your image.
# Tip: Use `%FEDORA_VERSION%` instead of static Fedora version numbers,
# so that your repos automatically use your image's actual Fedora version,
# which greatly simplifies future maintenance of your custom recipe.
repos:
# Example (which also demonstrates version number expansion):
# - https://copr.fedorainfracloud.org/coprs/jstaf/onedriver/repo/fedora-%FEDORA_VERSION%/jstaf-onedriver-fedora-%FEDORA_VERSION%.repo
# - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%FEDORA_VERSION%/atim-starship-fedora-%FEDORA_VERSION%.repo
# - https://dl.winehq.org/wine-builds/fedora/%FEDORA_VERSION%/winehq.repo
# - https://github.com/bayazidbh/ublue-kinoite-customized/raw/live/usr/etc/yum.repos.d/teamviewer.repo
# - https://github.com/bayazidbh/ublue-kinoite-customized/raw/live/usr/etc/yum.repos.d/AnyDesk-CentOS.repo
# - https://copr.fedorainfracloud.org/coprs/gloriouseggroll/nobara/repo/fedora-%FEDORA_VERSION%/gloriouseggroll-nobara-fedora-%FEDORA_VERSION%.repo
# - https://raw.githubusercontent.com/bayazidbh/ublue-kinoite-customized/live/scripts/post/rpm/gloriouseggroll-nobara-fedora-%FEDORA_VERSION%-ml.repo
# - https://download.docker.com/linux/fedora/docker-ce.repo
# - https://download.wavebox.app/stable/linux/rpm/wavebox.repo
# These RPMs will be installed from your enabled repositories (Fedora's own
# repos, extra "repos" you've added, etc). The installation is automatically
# performed via rpm-ostree during the image build, and will be pre-installed
# at the "system level" in the final image.
install:
# Needed for yafti (the first boot installer). Remove if you're not using yafti.
- python3-pip
# GNOME's GTK4 theme, Libadwaita. Already included in Silverblue, but not
# other spins. You can remove if you aren't using yafti, but many native
# apps and binaries require it, so it's a good idea to always include it
# if you ever download or compile any custom software on your machine.
- libadwaita
# Add your own below:
# Example:
# - tilix
- inxi
# shell
- zsh
- fish
# virtualization
- gnome-boxes
# - qemu
# - qemu-kvm
# - libvirt-daemon-config-network
# - libvirt-daemon-kvm
# - virt-install
# - virt-manager
# - virt-viewer
# - virt-top
# - libguestfs
# - python3-libguestfs
# docker
# - gnome-terminal
# - docker-ce
# - docker-ce-cli
# - docker-ce-rootless-extras
# - containerd.io
# - docker-buildx-plugin
# - docker-compose-plugin
# - https://desktop.docker.com/linux/main/amd64/docker-desktop-4.21.1-x86_64.rpm
# network shares
- samba
- nmap
- samba-winbind
- samba-winexe
- wsdd
# kde utils
- kate
- icoutils
- kio-admin
- applet-window-buttons
- kcron
- xwaylandvideobridge
- plasma-nm-openconnect
# global menu requirements
- libdbusmenu
- libdbusmenu-gtk3
- libdbusmenu-gtk2
# whitesur deps
- glib2-devel
- sassc
- libappstream-glib
# gaming-utils
- gamemode
- gamescope
- mangohud
- goverlay
- gameconqueror
- corectrl
# steamtinkerlaunch utils
- zenity
- yad
- xwininfo
- xxd
- xrandr
- xprop
- xdotool
- wget
- unzip
- git
- jq
- p7zip
- ImageMagick
# nobara packages
# - vkBasalt
# - gamescope-session
# - obs-studio-gamecapture
# - steamtinkerlaunch
# - wine-staging
# other utils
- input-remapper
- waydroid
- kcm-fcitx5
- fcitx5-qt6
- fcitx5-mozc
- avif-pixbuf-loader
- heif-pixbuf-loader
# - onedrive
# - onedriver
# fonts
- ibm-plex-fonts-all.noarch
- lato-fonts
- fira-code-fonts
- google-noto-sans-cjk-vf-fonts
- google-noto-sans-mono-cjk-vf-fonts
- google-noto-serif-cjk-vf-fonts
- google-noto-color-emoji-fonts
# ROCm drivers
# - rocm-hip
# - rocm-hip-devel
# - rocm-opencl
# - rocm-opencl-devel
# - rocm-smi-devel
# - rocm-comgr-devel
# - rocm-runtime-devel
# - rocminfo
# - rocm-clinfo
# online installs
- https://github.com/Umio-Yasuno/amdgpu_top/releases/download/v0.1.10/amdgpu_top-0.1.10-1.x86_64.rpm
- https://download-cdn.resilio.com/stable/rpm/x86_64/0/resilio-sync-2.8.1.1390-1.x86_64.rpm
# - https://github.com/rustdesk/rustdesk/releases/download/nightly/rustdesk-1.3.2-0.x86_64.rpm
# - https://proton.me/download/PassDesktop/linux/x64/ProtonPass.rpm
# - /tmp/scripts/pre/rpm/printer/epson/epsonscan2-6.7.61.0-1.x86_64.rpm
# - /tmp/scripts/pre/rpm/printer/epson/epsonscan2-non-free-plugin-1.0.0.6-1.x86_64.rpm
# These RPMs will be removed from the system image. This step happens during
# image build, BEFORE installing custom RPMs (from the "rpm.install" category).
remove:
# Remove the native firefox (from Fedora) in favor of the Flatpak.
# - firefox
# - firefox-langpacks
- ptyxis
# Configuration for the "first boot" experience, which is available after login.
firstboot:
# Whether to embed "yafti" into the OS image and configure it to autostart,
# which is the preferred uBlue "first boot" GUI. Set this to "false" if you've
# decided to use a different solution instead.
# yafti: true
# These Flatpaks will be suggested for install after user login, via the yafti
# "first boot" GUI. Everything below will be merged into the "yafti.yml" config
# on build, in a category named "Custom". If you prefer, you can instead remove
# everything below and directly edit "yafti.yml" to have more control.
# Alternatively, if you've disabled "yafti", you can still install these via
# the "just setup-flatpaks" command from our "custom.just" template file.
# This is just an example selection:
# flatpaks:
# - codes.merritt.Nyrna
# - com.discordapp.Discord
# - com.github.dynobo.normcap
# - com.github.huluti.Curtail
# - com.github.tchx84.Flatseal
# - com.microsoft.EdgeDev
# - com.obsproject.Studio
# - com.steamgriddb.SGDBoop
# - com.stremio.Stremio
# - com.usebottles.bottles
# - com.valvesoftware.Steam
# - com.wps.Office
# - de.shorsh.discord-screenaudio
# - fr.handbrake.ghb
# - info.smplayer.SMPlayer
# - io.github.Bavarder.Bavarder
# - io.github.Foldex.AdwSteamGtk
# - io.github.Soundux
# - io.github.aandrew_me.ytdn
# - io.github.dbchoco.muezzin
# - io.github.trigg.discover_overlay
# - io.wavebox.Wavebox
# - net.codeindustry.MasterPDFEditor
# - net.cozic.joplin_desktop
# - net.fasterland.converseen
# - net.kuribo64.melonDS
# - net.pcsx2.PCSX2
# - net.rpcs3.RPCS3
# - net.sourceforge.mcomix
# - no.mifi.losslesscut
# - org.citra_emu.citra
# - org.desmume.DeSmuME
# - org.duckstation.DuckStation
# - org.fedoraproject.MediaWriter
# - org.libretro.RetroArch
# - org.ppsspp.PPSSPP
# - org.ryujinx.Ryujinx
# - org.soundconverter.SoundConverter
# - org.upscayl.Upscayl
# - org.videolan.VLC
# - org.yuzu_emu.yuzu
# - page.codeberg.Imaginer.Imaginer