summaryrefslogtreecommitdiffstats
path: root/nixos/modules/i18n
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-02-27 06:16:42 -0600
committerThomas Tuegel <ttuegel@gmail.com>2016-02-28 07:12:55 -0600
commita91161aa57f7cfe447a551bafc2d7c6c6bbbe44b (patch)
treecc016a9bb2c988f013b863fa8f1939ecfa4bf94d /nixos/modules/i18n
parent1af8a3498cdc9c2441b20475e39123855b543cf8 (diff)
nixos: remove qtPlugins and gtkPlugins
Both Qt and GTK load plugins from the active profiles automatically, so it is sufficient to install input methods system-wide. Overriding the plugin paths may interfere with correct operation of other plugins.
Diffstat (limited to 'nixos/modules/i18n')
-rw-r--r--nixos/modules/i18n/inputMethod/fcitx.nix2
-rw-r--r--nixos/modules/i18n/inputMethod/nabi.nix1
-rw-r--r--nixos/modules/i18n/inputMethod/uim.nix2
3 files changed, 0 insertions, 5 deletions
diff --git a/nixos/modules/i18n/inputMethod/fcitx.nix b/nixos/modules/i18n/inputMethod/fcitx.nix
index f168f4451703..f73554b3edd2 100644
--- a/nixos/modules/i18n/inputMethod/fcitx.nix
+++ b/nixos/modules/i18n/inputMethod/fcitx.nix
@@ -29,8 +29,6 @@ in
config = mkIf (config.i18n.inputMethod.enabled == "fcitx") {
environment.systemPackages = [ fcitxPackage ];
- gtkPlugins = [ fcitxPackage ];
- qtPlugins = [ fcitxPackage ];
environment.variables = {
GTK_IM_MODULE = "fcitx";
diff --git a/nixos/modules/i18n/inputMethod/nabi.nix b/nixos/modules/i18n/inputMethod/nabi.nix
index 8c3965955130..c6708365effa 100644
--- a/nixos/modules/i18n/inputMethod/nabi.nix
+++ b/nixos/modules/i18n/inputMethod/nabi.nix
@@ -4,7 +4,6 @@ with lib;
{
config = mkIf (config.i18n.inputMethod.enabled == "nabi") {
environment.systemPackages = [ pkgs.nabi ];
- qtPlugins = [ pkgs.nabi ];
environment.variables = {
GTK_IM_MODULE = "nabi";
diff --git a/nixos/modules/i18n/inputMethod/uim.nix b/nixos/modules/i18n/inputMethod/uim.nix
index 401e1932f70c..f8a3e560656d 100644
--- a/nixos/modules/i18n/inputMethod/uim.nix
+++ b/nixos/modules/i18n/inputMethod/uim.nix
@@ -23,8 +23,6 @@ in
config = mkIf (config.i18n.inputMethod.enabled == "uim") {
environment.systemPackages = [ pkgs.uim ];
- gtkPlugins = [ pkgs.uim ];
- qtPlugins = [ pkgs.uim ];
environment.variables = {
GTK_IM_MODULE = "uim";