initial switch to hyprland
This commit is contained in:
parent
1daf9cf44b
commit
6c8c5c43d4
41 changed files with 562 additions and 501 deletions
17
home-manager/modules/rgb.nix
Normal file
17
home-manager/modules/rgb.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{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"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue