2009-10-12 09:36:19 -07:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2008-06-03 00:06:35 -07:00
|
|
|
|
2008-11-22 17:28:45 -08:00
|
|
|
let
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
cfg = config.services.gpm;
|
|
|
|
|
|
|
|
in
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2008-11-22 17:28:45 -08:00
|
|
|
|
|
|
|
options = {
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
services.gpm = {
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
enable = mkOption {
|
2013-10-30 09:37:45 -07:00
|
|
|
type = types.bool;
|
2009-10-12 09:36:19 -07:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable GPM, the General Purpose Mouse daemon,
|
|
|
|
which enables mouse support in virtual consoles.
|
|
|
|
'';
|
2008-11-22 17:28:45 -08:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
protocol = mkOption {
|
2013-10-30 09:37:45 -07:00
|
|
|
type = types.str;
|
2009-10-12 09:36:19 -07:00
|
|
|
default = "ps/2";
|
|
|
|
description = "Mouse protocol to use.";
|
|
|
|
};
|
|
|
|
|
2008-11-22 17:28:45 -08:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2008-11-22 17:28:45 -08:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2008-11-22 17:28:45 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
###### implementation
|
2008-11-22 17:28:45 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
config = mkIf cfg.enable {
|
2008-06-03 00:06:35 -07:00
|
|
|
|
2009-10-12 11:09:34 -07:00
|
|
|
jobs.gpm =
|
2009-10-12 09:36:19 -07:00
|
|
|
{ description = "General purpose mouse";
|
2008-11-22 17:28:45 -08:00
|
|
|
|
2009-11-06 14:19:17 -08:00
|
|
|
startOn = "started udev";
|
2008-11-22 17:28:45 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
exec = "${pkgs.gpm}/sbin/gpm -m /dev/input/mice -t ${cfg.protocol} -D &>/dev/null";
|
|
|
|
};
|
2008-06-03 00:06:35 -07:00
|
|
|
|
2008-11-22 17:28:45 -08:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2008-06-03 00:06:35 -07:00
|
|
|
}
|