2014-04-08 21:44:22 +01:00
|
|
|
# at-spi2-core daemon.
|
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2014-04-08 21:44:22 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2014-04-08 21:44:22 +01:00
|
|
|
|
2014-05-18 23:17:13 +01:00
|
|
|
let
|
|
|
|
gnome3 = config.environment.gnome3.packageSet;
|
|
|
|
in
|
2014-04-08 21:44:22 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.gnome3.at-spi2-core = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable at-spi2-core, a service for the Assistive Technologies
|
|
|
|
available on the GNOME platform.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.services.gnome3.at-spi2-core.enable {
|
|
|
|
|
2014-05-18 23:17:13 +01:00
|
|
|
environment.systemPackages = [ gnome3.at_spi2_core ];
|
2014-04-08 21:44:22 +01:00
|
|
|
|
2014-05-18 23:17:13 +01:00
|
|
|
services.dbus.packages = [ gnome3.at_spi2_core ];
|
2014-04-08 21:44:22 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|