2.home-manager/tests/modules/services/cliphist/cliphist-extra-options.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

24 lines
661 B
Nix

{
services.cliphist = {
enable = true;
allowImages = true;
extraOptions = [
"-max-dedupe-search"
"10"
"-max-items"
"500"
];
};
nmt.script = ''
servicePath=home-files/.config/systemd/user
assertFileExists $servicePath/cliphist.service
assertFileExists $servicePath/cliphist-images.service
assertFileRegex $servicePath/cliphist.service " -max-dedupe-search 10 "
assertFileRegex $servicePath/cliphist.service " -max-items 500 "
assertFileRegex $servicePath/cliphist-images.service " -max-dedupe-search 10 "
assertFileRegex $servicePath/cliphist-images.service " -max-items 500 "
'';
}