about summary refs log tree commit diff
path: root/users/glittershark/system/home
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/system/home')
-rw-r--r--users/glittershark/system/home/default.nix4
-rw-r--r--users/glittershark/system/home/machines/chupacabra.nix1
-rw-r--r--users/glittershark/system/home/modules/fcitx.nix10
3 files changed, 4 insertions, 11 deletions
diff --git a/users/glittershark/system/home/default.nix b/users/glittershark/system/home/default.nix
index a10e3f8dfc..347f9596ed 100644
--- a/users/glittershark/system/home/default.nix
+++ b/users/glittershark/system/home/default.nix
@@ -23,4 +23,8 @@ rec {
   });
 
   chupacabra = home ./machines/chupacabra.nix;
+
+  chupacabraHome = chupacabra.activation-script;
+
+  meta.targets = [ "chupacabraHome" ];
 }
diff --git a/users/glittershark/system/home/machines/chupacabra.nix b/users/glittershark/system/home/machines/chupacabra.nix
index e150c5ae57..66531e9d7f 100644
--- a/users/glittershark/system/home/machines/chupacabra.nix
+++ b/users/glittershark/system/home/machines/chupacabra.nix
@@ -11,7 +11,6 @@ in {
     ../modules/games.nix
     ../modules/rtlsdr.nix
     ../modules/urbint.nix
-    ../modules/fcitx.nix
   ];
 
   # for when hacking
diff --git a/users/glittershark/system/home/modules/fcitx.nix b/users/glittershark/system/home/modules/fcitx.nix
deleted file mode 100644
index 02fb4f5593..0000000000
--- a/users/glittershark/system/home/modules/fcitx.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-  i18n.inputMethod = {
-    enabled = "fcitx";
-    engines = with pkgs.fcitx-engines; [
-      cloudpinyin
-    ];
-  };
-}