nixpkgs/nixos/modules/services/ttys/gpm.nix

58 lines
1,017 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.gpm;
in
{
###### interface
options = {
services.gpm = {
enable = mkOption {
2013-10-30 16:37:45 +00:00
type = types.bool;
default = false;
description = ''
Whether to enable GPM, the General Purpose Mouse daemon,
which enables mouse support in virtual consoles.
'';
};
protocol = mkOption {
2013-10-30 16:37:45 +00:00
type = types.str;
default = "ps/2";
description = "Mouse protocol to use.";
};
};
};
###### implementation
config = mkIf cfg.enable {
2014-04-18 16:45:20 +00:00
systemd.services.gpm =
{ description = "Console Mouse Daemon";
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" ];
after = [ "dev-input-mice.device" ];
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";
};
};
}