2022-06-12 15:39:15 +00:00
|
|
|
{pkgs, ...}: {
|
2022-03-06 09:21:11 +00:00
|
|
|
systemd.user.services.wl-clipboard = {
|
|
|
|
Unit = {
|
|
|
|
Description = "wl-clipboard";
|
2022-06-12 15:39:15 +00:00
|
|
|
PartOf = ["graphical-session.target"];
|
2022-03-06 09:21:11 +00:00
|
|
|
};
|
|
|
|
Install = {
|
2022-06-12 15:39:15 +00:00
|
|
|
WantedBy = ["graphical-session.target"];
|
2022-03-06 09:21:11 +00:00
|
|
|
};
|
|
|
|
Service = {
|
|
|
|
ExecStart = "${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.clipman}/bin/clipman store --no-persist";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|