1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00

cliphist: add extraOptions option

Add an extraOptions option that would be appended to the cliphist
command.
This commit is contained in:
ErrorNoInternet 2024-05-01 13:02:57 +08:00 committed by Robert Helgesson
parent 2a44f4d09f
commit 036f3e03fd
No known key found for this signature in database
GPG Key ID: 96E745BD17AA17ED
3 changed files with 40 additions and 4 deletions

View File

@ -17,6 +17,14 @@ in {
'';
};
extraOptions = lib.mkOption {
type = with lib.types; listOf str;
default = [ "-max-dedupe-search" "10" "-max-items" "500" ];
description = ''
Flags to append to the cliphist command.
'';
};
systemdTarget = lib.mkOption {
type = lib.types.str;
default = "graphical-session.target";
@ -31,7 +39,8 @@ in {
};
};
config = lib.mkIf cfg.enable {
config = let extraOptionsStr = lib.escapeShellArgs cfg.extraOptions;
in lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.cliphist" pkgs
lib.platforms.linux)
@ -48,7 +57,7 @@ in {
Service = {
Type = "simple";
ExecStart =
"${pkgs.wl-clipboard}/bin/wl-paste --watch ${cfg.package}/bin/cliphist store";
"${pkgs.wl-clipboard}/bin/wl-paste --watch ${cfg.package}/bin/cliphist ${extraOptionsStr} store";
Restart = "on-failure";
};
@ -64,7 +73,7 @@ in {
Service = {
Type = "simple";
ExecStart =
"${pkgs.wl-clipboard}/bin/wl-paste --type image --watch ${cfg.package}/bin/cliphist store";
"${pkgs.wl-clipboard}/bin/wl-paste --type image --watch ${cfg.package}/bin/cliphist ${extraOptionsStr} store";
Restart = "on-failure";
};

View File

@ -0,0 +1,24 @@
{ ... }: {
services.cliphist = {
enable = true;
allowImages = true;
extraOptions = [ "-max-dedupe-search" "10" "-max-items" "500" ];
};
test.stubs = {
cliphist = { };
wl-clipboard = { };
};
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' "
'';
}

View File

@ -1 +1,4 @@
{ cliphist-sway-session-target = ./cliphist-sway-session-target.nix; }
{
cliphist-sway-session-target = ./cliphist-sway-session-target.nix;
cliphist-extra-options = ./cliphist-extra-options.nix;
}