aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hosts/tiamat/hardware.nix1
-rw-r--r--modules/by-name/in/inputMethod/module.nix16
2 files changed, 17 insertions, 0 deletions
diff --git a/hosts/tiamat/hardware.nix b/hosts/tiamat/hardware.nix
index 97600848..2e868703 100644
--- a/hosts/tiamat/hardware.nix
+++ b/hosts/tiamat/hardware.nix
@@ -4,6 +4,7 @@
];
soispha = {
+ services.inputMethod.enable = true;
hardware = {
enable = true;
cpuType = "amd";
diff --git a/modules/by-name/in/inputMethod/module.nix b/modules/by-name/in/inputMethod/module.nix
new file mode 100644
index 00000000..76fcaaee
--- /dev/null
+++ b/modules/by-name/in/inputMethod/module.nix
@@ -0,0 +1,16 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.soispha.services.inputMethod;
+in {
+ options.soispha.services.inputMethod = {
+ enable = lib.mkEnableOption "inputMethod";
+ };
+
+ config.i18n.inputMethod = lib.mkIf cfg.enable {
+ enable = true;
+ type = "ibus";
+ };
+}