mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
14 lines
305 B
Nix
14 lines
305 B
Nix
{pkgs, ...}: {
|
|
services.xserver.desktopManager.runXdgAutostartIfNone = true;
|
|
i18n.inputMethod = {
|
|
type = "fcitx5";
|
|
enable = true;
|
|
fcitx5 = {
|
|
waylandFrontend = true;
|
|
addons = with pkgs; [
|
|
fcitx5-anthy
|
|
fcitx5-gtk # TODO: Broken: 2025-10-28
|
|
];
|
|
};
|
|
};
|
|
}
|