summary refs log tree commit diff
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)
downloadnixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.tar
nixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.tar.gz
nixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.tar.bz2
nixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.tar.lz
nixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.tar.xz
nixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.tar.zst
nixpkgs-a91161aa57f7cfe447a551bafc2d7c6c6bbbe44b.zip
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 f168f445170..f73554b3edd 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 8c396595513..c6708365eff 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 401e1932f70..f8a3e560656 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";