mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
copyq: support xwayland
We do this by adding QT_QPA_PLATFORM=xcb to the service environment as per the workaround given in https://copyq.readthedocs.io/en/latest/known-issues.html#known-issue-wayland Fixes #3530
This commit is contained in:
parent
d3fd3b9d69
commit
67b97020b6
1 changed files with 1 additions and 0 deletions
|
@ -46,6 +46,7 @@ in {
|
|||
Service = {
|
||||
ExecStart = "${cfg.package}/bin/copyq";
|
||||
Restart = "on-failure";
|
||||
Environment = [ "QT_QPA_PLATFORM=xcb" ];
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ cfg.systemdTarget ]; };
|
||||
|
|
Loading…
Reference in a new issue