nixos-config/config/programs/wl-clipboard.nix

15 lines
367 B
Nix
Raw Normal View History

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