modules/clipboard: add new module to manage clipboard option and provider (#346)

This commit is contained in:
Gaétan Lepage 2023-04-24 10:38:57 +02:00 committed by GitHub
parent 9c8bee9da6
commit 73e8649b20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{pkgs}: {
example-with-str = {
clipboard = {
register = "unnamed";
providers.xclip.enable = true;
};
};
example-with-package = {
clipboard = {
register = ["unnamed" "unnamedplus"];
providers.xsel.enable = true;
};
};
}