This commit is contained in:
alsaiduq-lab 2026-01-01 17:31:40 -07:00
parent 14674eb883
commit 7a098f0027
3 changed files with 0 additions and 42 deletions

View file

@ -1,17 +0,0 @@
{pkgs, ...}: {
home.packages = [pkgs.openrgb-with-all-plugins];
systemd.user.services.openrgb-gui = {
Unit = {
Description = "OpenRGB GUI (daemon)";
After = ["graphical-session.target"];
PartOf = ["graphical-session.target"];
};
Service = {
ExecStart = "${pkgs.openrgb-with-all-plugins}/bin/openrgb --gui --startminimized --server 127.0.0.1:6742 --profile default";
Restart = "on-failure";
Environment = "QT_QPA_PLATFORM=wayland;xcb";
};
Install.WantedBy = ["graphical-session.target"];
};
}