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
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### 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-07-08 17:00:00 +01:00
|
|
|
environment.systemPackages = [ pkgs.at_spi2_core ];
|
2014-04-08 21:44:22 +01:00
|
|
|
|
2014-07-08 17:00:00 +01:00
|
|
|
services.dbus.packages = [ pkgs.at_spi2_core ];
|
2014-04-08 21:44:22 +01:00
|
|
|
|
2017-09-01 16:17:42 +01:00
|
|
|
systemd.packages = [ pkgs.at_spi2_core ];
|
|
|
|
|
2014-04-08 21:44:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|