about summary refs log tree commit diff
path: root/nixos/modules/i18n/input-method/uim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/i18n/input-method/uim.nix')
-rw-r--r--nixos/modules/i18n/input-method/uim.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/nixos/modules/i18n/input-method/uim.nix b/nixos/modules/i18n/input-method/uim.nix
index 6a636a771c1f2..7517dead6b054 100644
--- a/nixos/modules/i18n/input-method/uim.nix
+++ b/nixos/modules/i18n/input-method/uim.nix
@@ -3,7 +3,8 @@
 with lib;
 
 let
-  cfg = config.i18n.inputMethod.uim;
+  imcfg = config.i18n.inputMethod;
+  cfg = imcfg.uim;
 in
 {
   options = {
@@ -21,7 +22,7 @@ in
 
   };
 
-  config = mkIf (config.i18n.inputMethod.enabled == "uim") {
+  config = mkIf (imcfg.enable && imcfg.type == "uim") {
     i18n.inputMethod.package = pkgs.uim;
 
     environment.variables = {