Separated the dnf file yml into components (#43)
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (push) Successful in 16m15s
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (push) Successful in 16m15s
Reviewed-on: #43 Co-authored-by: Eriq Taing <eriq12@protonmail.com> Co-committed-by: Eriq Taing <eriq12@protonmail.com>
This commit is contained in:
@@ -1,193 +1,8 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
nonfree: rpmfusion
|
||||
files:
|
||||
- codium.repo
|
||||
- https://openrazer.github.io/hardware:razer.repo
|
||||
copr:
|
||||
- ublue-os/packages
|
||||
- solopasha/hyprland
|
||||
- peterwu/rendezvous
|
||||
- mavit/discover-overlay
|
||||
keys:
|
||||
- https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
|
||||
install:
|
||||
packages:
|
||||
# sddm
|
||||
- sddm
|
||||
- sddm-themes
|
||||
- qt5-qtgraphicaleffects
|
||||
- qt5-qtquickcontrols2
|
||||
- qt5-qtsvg
|
||||
|
||||
# password keeper
|
||||
- kf6-kwallet
|
||||
- kwalletmanager
|
||||
- pam-kwallet
|
||||
|
||||
# hyprland
|
||||
- aquamarine
|
||||
- hyprland-git
|
||||
- hyprpanel
|
||||
- hyprpolkitagent
|
||||
- hyprshot
|
||||
- hyprland-qt-support
|
||||
- hyprland-qtutils
|
||||
|
||||
# ublue udev rules and signing
|
||||
- ublue-os-udev-rules
|
||||
- ublue-os-signing
|
||||
|
||||
# environment
|
||||
# xwayland
|
||||
- xorg-x11-server-Xwayland
|
||||
# headset control
|
||||
- headsetcontrol
|
||||
# media related
|
||||
- mediainfo
|
||||
- playerctl
|
||||
- alsa-firmware
|
||||
# zip utilities
|
||||
- p7zip
|
||||
# qt libraries
|
||||
- qt5-qtwayland
|
||||
- qt6-qtwayland
|
||||
# vulkan
|
||||
- vulkan-tools
|
||||
- vulkan-validation-layers
|
||||
# xdg-desktop-portals
|
||||
- xdg-desktop-portal
|
||||
- xdg-desktop-portal-hyprland
|
||||
- xdg-desktop-portal-gtk
|
||||
- xdg-desktop-portal-gnome
|
||||
|
||||
# polkit
|
||||
- polkit
|
||||
|
||||
# sound
|
||||
- wireplumber
|
||||
- pipewire
|
||||
- headsetcontrol
|
||||
|
||||
# networking
|
||||
- bluez
|
||||
- bluez-tools
|
||||
- firewall-config
|
||||
|
||||
# applications
|
||||
# fuzzy finder
|
||||
- fzf
|
||||
|
||||
# dmenu runner
|
||||
- fuzzel
|
||||
|
||||
# file manager
|
||||
- nautilus
|
||||
- file-roller
|
||||
- file-roller-nautilus
|
||||
|
||||
- ffmpegthumbnailer
|
||||
|
||||
# text editor
|
||||
- neovim
|
||||
- codium
|
||||
|
||||
# software store
|
||||
- gnome-software
|
||||
|
||||
# disk management
|
||||
- gnome-disk-utility
|
||||
|
||||
# kdeconnect
|
||||
- kde-connect
|
||||
|
||||
# discord overlay
|
||||
- discover-overlay
|
||||
|
||||
# settings apps
|
||||
# qt
|
||||
- qt5ct
|
||||
- qt6ct
|
||||
|
||||
# gtk
|
||||
- nwg-look
|
||||
|
||||
# Themes and fonts
|
||||
# emoji fonts
|
||||
- google-noto-emoji-fonts
|
||||
|
||||
# theme and GUI
|
||||
- fontawesome-fonts-all
|
||||
- gnome-themes-extra
|
||||
- papirus-icon-theme
|
||||
- bibata-cursor-themes
|
||||
|
||||
# zsh
|
||||
- zsh
|
||||
# zoxide for z stuff
|
||||
- zoxide
|
||||
|
||||
# steam
|
||||
- steam
|
||||
# for game mode and big picture mode
|
||||
- gamescope
|
||||
# for performance view
|
||||
- mangohud
|
||||
# dkms for xpadneo and open razer
|
||||
- dkms
|
||||
- openrazer-meta
|
||||
|
||||
# simple editing softare
|
||||
- avidemux
|
||||
|
||||
# other multimedia
|
||||
- gstreamer1-plugin-libav
|
||||
- gstreamer1-plugins-bad-free-extras
|
||||
- gstreamer1-plugins-bad-freeworld
|
||||
- gstreamer1-plugins-ugly
|
||||
- gstreamer1-vaapi
|
||||
|
||||
remove:
|
||||
packages:
|
||||
# remove firefox
|
||||
- firefox
|
||||
- firefox-langpacks
|
||||
|
||||
# old codecs
|
||||
- fdk-aac-free
|
||||
- libavcodec-free
|
||||
- libavdevice-free
|
||||
- libavfilter-free
|
||||
- libavformat-free
|
||||
- libavutil-free
|
||||
- libpostproc-free
|
||||
- libswresample-free
|
||||
- libswscale-free
|
||||
- ffmpeg-free
|
||||
|
||||
replace:
|
||||
- from-repo: rpmfusion-free-updates
|
||||
packages:
|
||||
- old: mesa-va-drivers
|
||||
new: mesa-va-drivers-freeworld
|
||||
|
||||
- type: dnf
|
||||
install:
|
||||
packages:
|
||||
- ffmpeg
|
||||
- mesa-vdpau-drivers-freeworld
|
||||
|
||||
- type: dnf
|
||||
repos:
|
||||
files:
|
||||
- https://negativo17.org/repos/fedora-steam.repo
|
||||
install:
|
||||
packages:
|
||||
- repo: fedora-steam
|
||||
packages:
|
||||
- dkms-xpadneo
|
||||
|
||||
- type: script
|
||||
scripts:
|
||||
- installdkmsmodules.sh
|
||||
- from-file: dnf/multimedia.yml
|
||||
- from-file: dnf/sddm.yml
|
||||
- from-file: dnf/hyprland.yml
|
||||
- from-file: dnf/environment.yml
|
||||
- from-file: dnf/applications.yml
|
||||
- from-file: dnf/themes.yml
|
||||
- from-file: dnf/drivers.yml
|
71
recipes/dnf/applications.yml
Normal file
71
recipes/dnf/applications.yml
Normal file
@@ -0,0 +1,71 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
nonfree: rpmfusion
|
||||
files:
|
||||
- codium.repo
|
||||
- https://openrazer.github.io/hardware:razer.repo
|
||||
copr:
|
||||
- mavit/discover-overlay
|
||||
keys:
|
||||
- https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
|
||||
install:
|
||||
packages:
|
||||
# applications
|
||||
# fuzzy finder
|
||||
- fzf
|
||||
|
||||
# dmenu runner
|
||||
- fuzzel
|
||||
|
||||
# file manager
|
||||
- nautilus
|
||||
- file-roller
|
||||
- file-roller-nautilus
|
||||
|
||||
- ffmpegthumbnailer
|
||||
|
||||
# text editor
|
||||
- neovim
|
||||
- codium
|
||||
|
||||
# software store
|
||||
- gnome-software
|
||||
|
||||
# disk management
|
||||
- gnome-disk-utility
|
||||
|
||||
# kdeconnect
|
||||
- kde-connect
|
||||
|
||||
# discord overlay
|
||||
- discover-overlay
|
||||
|
||||
# settings apps
|
||||
# qt
|
||||
- qt5ct
|
||||
- qt6ct
|
||||
|
||||
# gtk
|
||||
- nwg-look
|
||||
|
||||
# zsh
|
||||
- zsh
|
||||
# zoxide for z stuff
|
||||
- zoxide
|
||||
|
||||
# steam
|
||||
- steam
|
||||
# for game mode and big picture mode
|
||||
- gamescope
|
||||
# for performance view
|
||||
- mangohud
|
||||
|
||||
# simple editing softare
|
||||
- avidemux
|
||||
|
||||
remove:
|
||||
packages:
|
||||
# remove firefox
|
||||
- firefox
|
||||
- firefox-langpacks
|
17
recipes/dnf/drivers.yml
Normal file
17
recipes/dnf/drivers.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
files:
|
||||
- https://negativo17.org/repos/fedora-steam.repo
|
||||
- https://openrazer.github.io/hardware:razer.repo
|
||||
install:
|
||||
packages:
|
||||
- dkms
|
||||
- openrazer-meta
|
||||
- repo: fedora-steam
|
||||
packages:
|
||||
- dkms-xpadneo
|
||||
|
||||
- type: script
|
||||
scripts:
|
||||
- installdkmsmodules.sh
|
47
recipes/dnf/environment.yml
Normal file
47
recipes/dnf/environment.yml
Normal file
@@ -0,0 +1,47 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
files:
|
||||
- codium.repo
|
||||
copr:
|
||||
- ublue-os/packages
|
||||
install:
|
||||
packages:
|
||||
# ublue udev rules and signing
|
||||
- ublue-os-udev-rules
|
||||
- ublue-os-signing
|
||||
|
||||
# environment
|
||||
# xwayland
|
||||
- xorg-x11-server-Xwayland
|
||||
# headset control
|
||||
- headsetcontrol
|
||||
# media related
|
||||
- mediainfo
|
||||
- playerctl
|
||||
- alsa-firmware
|
||||
# zip utilities
|
||||
- p7zip
|
||||
# qt libraries
|
||||
- qt5-qtwayland
|
||||
- qt6-qtwayland
|
||||
# vulkan
|
||||
- vulkan-tools
|
||||
- vulkan-validation-layers
|
||||
# xdg-desktop-portals
|
||||
- xdg-desktop-portal
|
||||
- xdg-desktop-portal-gtk
|
||||
- xdg-desktop-portal-gnome
|
||||
|
||||
# polkit
|
||||
- polkit
|
||||
|
||||
# sound
|
||||
- wireplumber
|
||||
- pipewire
|
||||
- headsetcontrol
|
||||
|
||||
# networking
|
||||
- bluez
|
||||
- bluez-tools
|
||||
- firewall-config
|
15
recipes/dnf/hyprland.yml
Normal file
15
recipes/dnf/hyprland.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
copr:
|
||||
- solopasha/hyprland
|
||||
install:
|
||||
packages:
|
||||
- aquamarine
|
||||
- hyprland-git
|
||||
- hyprpanel
|
||||
- hyprpolkitagent
|
||||
- hyprshot
|
||||
- hyprland-qt-support
|
||||
- hyprland-qtutils
|
||||
- xdg-desktop-portal-hyprland
|
38
recipes/dnf/multimedia.yml
Normal file
38
recipes/dnf/multimedia.yml
Normal file
@@ -0,0 +1,38 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
nonfree: rpmfusion
|
||||
install:
|
||||
packages:
|
||||
# other multimedia
|
||||
- gstreamer1-plugin-libav
|
||||
- gstreamer1-plugins-bad-free-extras
|
||||
- gstreamer1-plugins-bad-freeworld
|
||||
- gstreamer1-plugins-ugly
|
||||
- gstreamer1-vaapi
|
||||
|
||||
remove:
|
||||
packages:
|
||||
# old codecs
|
||||
- fdk-aac-free
|
||||
- libavcodec-free
|
||||
- libavdevice-free
|
||||
- libavfilter-free
|
||||
- libavformat-free
|
||||
- libavutil-free
|
||||
- libpostproc-free
|
||||
- libswresample-free
|
||||
- libswscale-free
|
||||
- ffmpeg-free
|
||||
|
||||
replace:
|
||||
- from-repo: rpmfusion-free-updates
|
||||
packages:
|
||||
- old: mesa-va-drivers
|
||||
new: mesa-va-drivers-freeworld
|
||||
|
||||
- type: dnf
|
||||
install:
|
||||
packages:
|
||||
- ffmpeg
|
||||
- mesa-vdpau-drivers-freeworld
|
15
recipes/dnf/sddm.yml
Normal file
15
recipes/dnf/sddm.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
install:
|
||||
packages:
|
||||
# sddm
|
||||
- sddm
|
||||
- sddm-themes
|
||||
- qt5-qtgraphicaleffects
|
||||
- qt5-qtquickcontrols2
|
||||
- qt5-qtsvg
|
||||
|
||||
# password keeper
|
||||
- kf6-kwallet
|
||||
- kwalletmanager
|
||||
- pam-kwallet
|
16
recipes/dnf/themes.yml
Normal file
16
recipes/dnf/themes.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
modules:
|
||||
- type: dnf
|
||||
repos:
|
||||
copr:
|
||||
- peterwu/rendezvous
|
||||
install:
|
||||
packages:
|
||||
# Themes and fonts
|
||||
# emoji fonts
|
||||
- google-noto-emoji-fonts
|
||||
|
||||
# theme and GUI
|
||||
- fontawesome-fonts-all
|
||||
- gnome-themes-extra
|
||||
- papirus-icon-theme
|
||||
- bibata-cursor-themes
|
Reference in New Issue
Block a user