Clipboard
Appearance
The clipboard is a facility used for short-term data storage and/or data transfer between documents or applications, via copy and paste operations. - Wikipedia page on Clipboard (Computing)
Options
Options supported by NixOS include (but are not limited to):
- cliphist
- clipman
- wl-clip-persist
- clipse
Home Manager
Cliphist
Options may be found at Home Manager - services.cliphist. Example usage shown below:
❄︎ /etc/nixos/home.nix
services.cliphist = {
enable = true;
# A Wayland session
systemdTargets = ["config.wayland.systemd.target"];
# Sway Target
# if using make sure that:
# "wayland.windowManager.sway.systemd.enable = true;" is set
#systemdTargets = ["sway-session.target"];
extraOptions = [
"-max-dedupe-search"
"10"
"-max-items"
"500"
];
allowImages = true;
};