2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2008-06-03 07:06:35 +00:00
|
|
|
|
2008-11-23 01:28:45 +00:00
|
|
|
let
|
2009-10-12 16:36:19 +00:00
|
|
|
|
|
|
|
cfg = config.services.gpm;
|
|
|
|
|
|
|
|
in
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2008-11-23 01:28:45 +00:00
|
|
|
|
|
|
|
options = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
services.gpm = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
enable = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.bool;
|
2009-10-12 16:36:19 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable GPM, the General Purpose Mouse daemon,
|
|
|
|
which enables mouse support in virtual consoles.
|
|
|
|
'';
|
2008-11-23 01:28:45 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
protocol = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.str;
|
2009-10-12 16:36:19 +00:00
|
|
|
default = "ps/2";
|
|
|
|
description = "Mouse protocol to use.";
|
|
|
|
};
|
|
|
|
|
2008-11-23 01:28:45 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-11-23 01:28:45 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-11-23 01:28:45 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
###### implementation
|
2008-11-23 01:28:45 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
config = mkIf cfg.enable {
|
2008-06-03 07:06:35 +00:00
|
|
|
|
2014-04-18 16:45:20 +00:00
|
|
|
systemd.services.gpm =
|
|
|
|
{ description = "Console Mouse Daemon";
|
2008-11-23 01:28:45 +00:00
|
|
|
|
2014-04-18 16:45:20 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2014-04-28 17:12:48 +00:00
|
|
|
requires = [ "dev-input-mice.device" ];
|
2014-05-20 11:07:40 +00:00
|
|
|
after = [ "dev-input-mice.device" ];
|
2008-11-23 01:28:45 +00:00
|
|
|
|
2014-04-18 16:45:20 +00:00
|
|
|
serviceConfig.ExecStart = "@${pkgs.gpm}/sbin/gpm gpm -m /dev/input/mice -t ${cfg.protocol}";
|
|
|
|
serviceConfig.Type = "forking";
|
|
|
|
serviceConfig.PIDFile = "/run/gpm.pid";
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2008-06-03 07:06:35 +00:00
|
|
|
|
2008-11-23 01:28:45 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-06-03 07:06:35 +00:00
|
|
|
}
|