mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
bb8fc2646e
$ sed -i '/require =/ { :b; s,(import \([^)]*\)),\1,; /];/ { b e }; n; b b; :e }' *.nix svn path=/nixos/branches/modular-nixos/; revision=15660
59 lines
1022 B
Nix
59 lines
1022 B
Nix
{pkgs, config, ...}:
|
|
|
|
###### interface
|
|
let
|
|
inherit (pkgs.lib) mkOption;
|
|
|
|
options = {
|
|
services = {
|
|
gpm = {
|
|
enable = mkOption {
|
|
default = false;
|
|
description = "
|
|
Whether to enable general purpose mouse daemon.
|
|
";
|
|
};
|
|
protocol = mkOption {
|
|
default = "ps/2";
|
|
description = "
|
|
Mouse protocol to use.
|
|
";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
in
|
|
|
|
###### implementation
|
|
let
|
|
cfg = config.services.gpm;
|
|
inherit (pkgs.lib) mkIf;
|
|
|
|
gpm = pkgs.gpm;
|
|
gpmBin = "${gpm}/sbin/gpm";
|
|
|
|
job = {
|
|
name = "gpm";
|
|
job = ''
|
|
description = "General purpose mouse"
|
|
|
|
start on udev
|
|
stop on shutdown
|
|
|
|
respawn ${gpmBin} -m /dev/input/mice -t ${cfg.protocol} -D &>/dev/null
|
|
'';
|
|
};
|
|
in
|
|
|
|
mkIf cfg.enable {
|
|
require = [
|
|
../upstart-jobs/default.nix # config.services.extraJobs
|
|
# /etc/security/console.perms (should be generated ?)
|
|
options
|
|
];
|
|
|
|
services = {
|
|
extraJobs = [job];
|
|
};
|
|
}
|