mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
14 lines
278 B
Nix
14 lines
278 B
Nix
{pkgs, ...}: {
|
|
services.xserver.desktopManager.runXdgAutostartIfNone = true;
|
|
i18n.inputMethod = {
|
|
type = "fcitx5";
|
|
enable = true;
|
|
fcitx5 = {
|
|
waylandFrontend = true;
|
|
addons = with pkgs; [
|
|
fcitx5-anthy
|
|
fcitx5-gtk
|
|
];
|
|
};
|
|
};
|
|
}
|