-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbase.toml
More file actions
132 lines (126 loc) · 3.05 KB
/
Copy pathbase.toml
File metadata and controls
132 lines (126 loc) · 3.05 KB
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
# Package manifest for the bluefin base image.
# Read by build_files/base/03-packages.sh via build_files/shared/read-packages.
#
# Sections:
# [multimedia_overrides] packages synced from fedora-multimedia repo
# [fedora] base Fedora packages, all versions
# [fedora_v42] additions for Fedora 42 only
# [fedora_v43] additions for Fedora 43 only
# [fedora_v44] additions for Fedora 44 only
# [excluded] packages removed from the base image
[multimedia_overrides]
# Replace mesa and friends with less-crippled versions from negativo17/fedora-multimedia.
# Versions are pinned with `dnf5 versionlock` after install.
packages = [
"intel-gmmlib",
"intel-mediasdk",
"intel-vpl-gpu-rt",
"libheif",
"libva",
"libva-intel-media-driver",
"mesa-dri-drivers",
"mesa-filesystem",
"mesa-libEGL",
"mesa-libGL",
"mesa-libgbm",
"mesa-vulkan-drivers",
]
[fedora]
# Base packages from Fedora repos — common to all supported Fedora versions.
packages = [
"adw-gtk3-theme",
"adwaita-fonts-all",
"alsa-firmware",
"alsa-tools-firmware",
"anaconda-live",
"bootc",
"bootupd",
"containerd",
"ddcutil",
"distrobox",
"dracut-live",
"evtest",
"fastfetch",
"firewall-config",
"fish",
"flatpak-spawn",
"firefox",
"gcc",
"gcc-c++",
"git-credential-libsecret",
"gnome-ponytail-daemon",
"gnome-tweaks",
"google-noto-sans-cjk-vf-fonts",
"grub2-efi-x64-cdboot",
"gum",
"gvfs-nfs",
"ibus-mozc",
"ibus-unikey",
"igt-gpu-tools",
"input-remapper",
"isomd5sum",
"just",
"libappindicator-gtk3",
"libayatana-appindicator-gtk3",
"libblockdev-btrfs",
"libblockdev-dm",
"libblockdev-lvm",
"libblockdev-mpath",
"libcamera-gstreamer",
"libcamera-tools",
"libratbag-ratbagd",
"libva-utils",
"libxcrypt-compat",
"livesys-scripts",
"make",
"mesa-libGLU",
"mozc",
"nautilus-gsconnect",
"openrgb-udev-rules",
"openssh-askpass",
"pipewire-libs-extra",
"python3-gnome-ponytail-daemon",
"slitherer",
"squashfs-tools",
"switcheroo-control",
"waypipe",
"wireguard-tools",
"wl-clipboard",
"xdg-terminal-exec",
"xorriso",
"zenity",
"zsh",
]
[fedora_v42]
# TODO: remove when F42 is dropped
packages = [
"evolution-ews-core",
]
[fedora_v43]
packages = [
"evolution-ews-core",
"gnupg2-scdaemon",
]
[fedora_v44]
packages = [
"gnupg2-scdaemon",
]
[excluded]
# Packages removed from the base image — conflicts with or replaced by image content.
packages = [
"default-fonts-cjk-sans",
"fedora-bookmarks",
"fedora-chromium-config",
"fedora-chromium-config-gnome",
"fedora-third-party",
"firefox-langpacks",
"gnome-extensions-app",
"gnome-shell-extension-background-logo",
"gnome-software",
"gnome-software-rpm-ostree",
"gnome-terminal-nautilus",
"google-noto-sans-cjk-fonts",
"podman-docker",
"totem-video-thumbnailer",
"yelp",
]