Modules setup
This commit is contained in:
17
config/files/usr/share/ublue-os/just/custom.just
Normal file
17
config/files/usr/share/ublue-os/just/custom.just
Normal file
@@ -0,0 +1,17 @@
|
||||
!include /usr/share/ublue-os/just/bling.just
|
||||
|
||||
# Install all flatpaks defined in recipe.yml
|
||||
setup-flatpaks:
|
||||
#!/usr/bin/env bash
|
||||
echo 'Installing flatpaks from the ublue recipe ...'
|
||||
flatpaks=$(yq -- '.firstboot.flatpaks[]' "/usr/share/ublue-os/recipe.yml")
|
||||
for pkg in $flatpaks; do \
|
||||
echo "Installing: ${pkg}" && \
|
||||
flatpak install --user --noninteractive flathub $pkg; \
|
||||
done
|
||||
|
||||
# Include some of your custom scripts here!
|
||||
|
||||
# Add boot parameters needed for a Framework 13 laptop
|
||||
framework-13:
|
||||
rpm-ostree kargs --append="module_blacklist=hid_sensor_hub" --append="nvme.noacpi=1" --append="tpm_tis.interrupts=0"
|
||||
Reference in New Issue
Block a user