2022-06-12 16:39:15 +01:00
|
|
|
{pkgs, ...}: {
|
2022-03-06 10:21:11 +01:00
|
|
|
systemd.user.services.wl-clipboard = {
|
|
|
|
Unit = {
|
|
|
|
Description = "wl-clipboard";
|
2023-01-01 14:28:25 +01:00
|
|
|
After = ["graphical-session-pre.target"];
|
|
|
|
PartOf = ["graphical-session.target"];
|
2022-03-06 10:21:11 +01:00
|
|
|
};
|
2023-01-01 12:44:43 +01:00
|
|
|
Install.WantedBy = ["graphical-session.target"];
|
2022-03-06 10:21:11 +01:00
|
|
|
Service = {
|
|
|
|
ExecStart = "${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.clipman}/bin/clipman store --no-persist";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|