From 1a3486d77574c06b395ab6cda41084f5ed24a3f4 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 16 Jan 2025 02:11:26 -0800 Subject: modularized nix configuration; builds correctly --- nix/modules/home/fcitx.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nix/modules/home/fcitx.nix (limited to 'nix/modules/home/fcitx.nix') diff --git a/nix/modules/home/fcitx.nix b/nix/modules/home/fcitx.nix new file mode 100644 index 0000000..05dd8f7 --- /dev/null +++ b/nix/modules/home/fcitx.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +{ + i18n.inputMethod = { + enabled = "fcitx5"; + fcitx5.addons = with pkgs; [ + fcitx5-gtk + fcitx5-chinese-addons + fcitx5-configtool + fcitx5-mozc + fcitx5-rime + ]; + }; +} -- cgit