Files
nixy/home/system/clipboard/default.nix
T
Hadi c37f3fc5e4 ok
Signed-off-by: Hadi <hadi@example.com>
2026-07-29 10:32:10 +02:00

11 lines
354 B
Nix

# Clipboard history: cliphist watches the Wayland clipboard and stores every
# entry (text + images) so it can be recalled later via the `clipboard-menu`
# script (tofi). Uses the home-manager module so the watcher services are
# managed the same way as swaync/hypridle.
{...}: {
services.cliphist = {
enable = true;
allowImages = true;
};
}