mirror of
https://github.com/nix-community/home-manager
synced 2024-12-26 03:39:47 +01:00
14 lines
280 B
Nix
14 lines
280 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./fcitx5-stubs.nix ];
|
|
|
|
i18n.inputMethod = {
|
|
enabled = "fcitx5";
|
|
fcitx5.addons = [ pkgs.libsForQt5.fcitx5-chinese-addons ];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/fcitx5-daemon.service
|
|
'';
|
|
}
|