summary refs log tree commit diff
path: root/nixos/modules/services/desktops/gnome3/at-spi2-core.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/desktops/gnome3/at-spi2-core.nix')
-rw-r--r--nixos/modules/services/desktops/gnome3/at-spi2-core.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/nixos/modules/services/desktops/gnome3/at-spi2-core.nix b/nixos/modules/services/desktops/gnome3/at-spi2-core.nix
deleted file mode 100644
index 492242e3296..00000000000
--- a/nixos/modules/services/desktops/gnome3/at-spi2-core.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-# at-spi2-core daemon.
-
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-{
-
-  meta = {
-    maintainers = teams.gnome.members;
-  };
-
-  ###### 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.
-
-          Enable this if you get the error or warning
-          <literal>The name org.a11y.Bus was not provided by any .service files</literal>.
-        '';
-      };
-
-    };
-
-  };
-
-
-  ###### implementation
-
-  config = mkMerge [
-    (mkIf config.services.gnome3.at-spi2-core.enable {
-      environment.systemPackages = [ pkgs.at-spi2-core ];
-      services.dbus.packages = [ pkgs.at-spi2-core ];
-      systemd.packages = [ pkgs.at-spi2-core ];
-    })
-
-    (mkIf (!config.services.gnome3.at-spi2-core.enable) {
-      environment.variables.NO_AT_BRIDGE = "1";
-    })
-  ];
-}