A layer for adding enhancements to your image. Use these for better hardware support and automatic updates!
Add this to your Containerfile to copy the rules over:
COPY --from=ghcr.io/ublue-os/config:latest /files/ublue-os/udev-rules /
COPY --from=ghcr.io/ublue-os/config:latest /files/ublue-os/update-services /
Or if you prefer to install via an RPM package:
COPY --from=ghcr.io/ublue-os/config:latest /rpms/ublue-os-udev-rules.noarch.rpm /
COPY --from=ghcr.io/ublue-os/config:latest /rpms/ublue-os-update-services.noarch.rpm /
RUN rpm -ivh /ublue-os-udev-rules.noarch.rpm
RUN rpm -ivh /ublue-os-update-services.noarch.rpm
Additionally, there is support for building custom RPMs:
COPY --from=ghcr.io/ublue-os/config:latest /build /tmp/build
COPY justfile /tmp/build/ublue-os-just/justfile
RUN /tmp/build/ublue-os-just/build.sh
RUN rpm -ivh /tmp/ublue-os/rpmbuild/RPMS/noarch/ublue-os-just-*.noarch.rpm
Feel free to PR more rules into this repo! Ideally as they get added upstream we can remove them here. Note that this image only contains the udev rules, you must still install and configure the software that needs these rules.
- Gaming controllers from game-devices-udev
- Google Titan USB keys
- OpenRGB rules
- Thinkpad Battery Threshold - change threshold without password prompt
- Yubikey support
- Wooting Wootility
- Neutron HiFi DAC V1
- Apple SuperDrive (requires
sg3_utils
package to be installed for it to work)
Note: udev rules are placed in /usr/lib/udev/rules.d/
, it's normal for /etc/udev/rules.d
to be empty on initial installation.
- Background flatpak updates
- Background rpm-ostree updates
- Just support
If you have a rule you want to contribute send a pull request by adding the rule into files/etc/udev/rules.d
These images are signed with sisgstore's cosign. You can verify the signature by downloading the cosign.pub
key from this repo and running the following command:
cosign verify --key cosign.pub ghcr.io/ublue-os/config