nixpkgs/nixos/modules/services/misc/logkeys.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
823 B
Nix
Raw Normal View History

2017-12-23 00:08:05 +00:00
{ config, lib, pkgs, ... }:
2017-04-25 22:53:50 +00:00
let
cfg = config.services.logkeys;
in {
options.services.logkeys = {
enable = lib.mkEnableOption "logkeys, a keylogger service";
2018-02-21 07:11:33 +00:00
device = lib.mkOption {
2018-02-21 07:11:33 +00:00
description = "Use the given device as keyboard input event device instead of /dev/input/eventX default.";
default = null;
type = lib.types.nullOr lib.types.str;
2018-02-21 07:11:33 +00:00
example = "/dev/input/event15";
};
2017-04-25 22:53:50 +00:00
};
config = lib.mkIf cfg.enable {
2017-04-25 22:53:50 +00:00
systemd.services.logkeys = {
description = "LogKeys Keylogger Daemon";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
2018-02-21 07:11:33 +00:00
ExecStart = "${pkgs.logkeys}/bin/logkeys -s${lib.optionalString (cfg.device != null) " -d ${cfg.device}"}";
2017-04-25 22:53:50 +00:00
ExecStop = "${pkgs.logkeys}/bin/logkeys -k";
Type = "forking";
};
};
};
}