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

15 lines
373 B
Nix
Raw Normal View History

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