Skip to content

Commit

Permalink
Update recipe.yml
Browse files Browse the repository at this point in the history
copy a lot of satellites config but remove some unnecessary things and add a few goodies
  • Loading branch information
marinmo authored Mar 10, 2024
1 parent a23a2b5 commit 8af9574
Showing 1 changed file with 58 additions and 20 deletions.
78 changes: 58 additions & 20 deletions config/recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: image for media player (low power)

# the base image to build on top of (FROM) and the version tag to use
base-image: ghcr.io/ublue-os/silverblue-main
image-version: 39 # latest is also supported if you want new updates ASAP
image-version: latest # latest is also supported if you want new updates ASAP

# module configuration, executed in order
# you can include multiple instances of the same module
Expand All @@ -17,33 +17,71 @@ modules:
# put configuration files you want in /etc/ on a booted system
# in /usr/etc/ in the image. read more in files module reference.

- type: fonts
fonts:
nerd-fonts:
# don't add "Nerd Font" suffix.
- FiraCode
- Hack
- SourceCodePro
- Terminus
- JetBrainsMono
- NerdFontsSymbolsOnly
google-fonts:
- Roboto
- Open Sans

- type: bling
install:
- laptop
- ublue-update

- type: rpm-ostree
repos: # - https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
repos:
- https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
install:
# - micro
# - starship
- starship
- fish
- keychain
- wl-clipboard
- eza
- opendoas
- easyeffects
- qpwgraph
remove:
# example: removing firefox (in favor of the flatpak)
# "firefox" is the main package, "firefox-langpacks" is a dependency
# - firefox
# - firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case)
- firefox # default firefox removed in favor of flatpak
- firefox-langpacks # langpacks needs to also be removed to prevent dependency problems

- type: default-flatpaks
notify: true # Send notification after install/uninstall is finished (true/false)
notify: true # Send notification after install/uninstall is finished (true/false)
system:
# If no repo information is specified, Flathub will be used by default
# repo-url: https://dl.flathub.org/repo/flathub.flatpakrepo
# repo-name: flathub
# repo-title: "Flathub (system-wide)" # Optional; this sets the remote's user-facing name in graphical frontends like GNOME Software
repo-url: https://dl.flathub.org/repo/flathub.flatpakrepo
repo-name: flathub
repo-title: "Flathub (system-wide)" # Optional; this sets the remote's user-facing name in graphical frontends like GNOME Software
install:
# - org.mozilla.firefox
# - org.gnome.Loupe
# - one.ablaze.floorp//lightning # This is an example of flatpak which has multiple branches in selection (flatpak//branch).
# Flatpak runtimes are not supported (like org.winehq.Wine//stable-23.08),

# only normal flatpak applications are (like Floorp Lightning web browser in this example).
# Installing different branches of the same Flatpak is not supported.
# - org.gnome.Loupe
# - one.ablaze.floorp//lightning # This is an example of flatpak which has multiple branches in selection (flatpak//branch).
# Flatpak runtimes are not supported (like org.winehq.Wine//stable-23.08).
# Only normal flatpak applications are (like Floorp Lightning web browser in this example).
# Multiple install of same flatpaks with different branches is not supported.
remove:
# - org.gnome.eog
# - org.gnome.eog
#
# A flatpak repo can also be added without having to install flatpaks,
# as long as one of the repo- fields is present
user:
repo-url: https://dl.flathub.org/repo/flathub.flatpakrepo
repo-name: flathub
repo-title: "Flathub (user)" # Optional; this sets the remote's user-facing name in graphical frontends like GNOME Software
install:
- org.mozilla.firefox # Firefox
- com.github.tchx84.Flatseal # Flatseal
- com.github.Eloston.UngoogledChromium # Ungoogled-Chromium
- com.spotify.Client # Spotify
- org.gtk.Gtk3theme.Adwaita-dark # Adwaita-dark
- ca.desrt.dconf-editor # dconf-editor
- com.mattjakeman.ExtensionManager # ExtensionManager
- io.mpv.Mpv # mpv

- type: signing # this sets up the proper policy & signing files for signed images to work fully

0 comments on commit 8af9574

Please sign in to comment.