aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/tiamat/hardware.nix1
-rw-r--r--modules/by-name/in/inputMethod/module.nix16
2 files changed, 0 insertions, 17 deletions
diff --git a/hosts/tiamat/hardware.nix b/hosts/tiamat/hardware.nix
index 2e868703..97600848 100644
--- a/hosts/tiamat/hardware.nix
+++ b/hosts/tiamat/hardware.nix
@@ -4,7 +4,6 @@
];
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
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";
- };
-}