logkeys.service: Add 'device' option
This commit is contained in:
parent
c26bf1cb60
commit
1c3c80360b
|
@ -7,6 +7,13 @@ let
|
||||||
in {
|
in {
|
||||||
options.services.logkeys = {
|
options.services.logkeys = {
|
||||||
enable = mkEnableOption "logkeys service";
|
enable = mkEnableOption "logkeys service";
|
||||||
|
|
||||||
|
device = mkOption {
|
||||||
|
description = "Use the given device as keyboard input event device instead of /dev/input/eventX default.";
|
||||||
|
default = null;
|
||||||
|
type = types.nullOr types.string;
|
||||||
|
example = "/dev/input/event15";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
@ -14,7 +21,7 @@ in {
|
||||||
description = "LogKeys Keylogger Daemon";
|
description = "LogKeys Keylogger Daemon";
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = "${pkgs.logkeys}/bin/logkeys -s";
|
ExecStart = "${pkgs.logkeys}/bin/logkeys -s${lib.optionalString (cfg.device != null) " -d ${cfg.device}"}";
|
||||||
ExecStop = "${pkgs.logkeys}/bin/logkeys -k";
|
ExecStop = "${pkgs.logkeys}/bin/logkeys -k";
|
||||||
Type = "forking";
|
Type = "forking";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue