aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-14 14:29:23 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-14 14:29:23 +0100
commitccbd137837f7dcea0796f2fcdeee903b4f4158c4 (patch)
treeafacb6c09782adb7941c6461c68707da10bc3b94 /modules/by-name
parentbuild(treewide): Update (diff)
downloadnixos-config-ccbd137837f7dcea0796f2fcdeee903b4f4158c4.zip
fix(modules/inputMethods): Remove
This is a huge hack, that doesn't even work with all my applications (notably, alacritty does not support ibus.) As such, simply disabling it is the right call.
Diffstat (limited to 'modules/by-name')
-rw-r--r--modules/by-name/in/inputMethod/module.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/by-name/in/inputMethod/module.nix b/modules/by-name/in/inputMethod/module.nix
deleted file mode 100644
index 76fcaaee..00000000
--- a/modules/by-name/in/inputMethod/module.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- 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";
- };
-}