2019-02-26 13:44:40 +01:00
|
|
|
{
|
2023-09-11 20:23:04 +02:00
|
|
|
config,
|
2024-07-29 11:47:59 +02:00
|
|
|
lib,
|
2023-09-11 20:23:04 +02:00
|
|
|
pkgs,
|
|
|
|
...
|
2024-11-20 20:32:38 +01:00
|
|
|
}:
|
|
|
|
{
|
2019-12-26 01:00:46 +01:00
|
|
|
console.keyMap = "de";
|
2019-02-26 13:44:40 +01:00
|
|
|
i18n = {
|
|
|
|
defaultLocale = "en_US.UTF-8";
|
2024-11-20 20:32:38 +01:00
|
|
|
supportedLocales = [ "all" ];
|
2019-02-26 13:44:40 +01:00
|
|
|
inputMethod = {
|
2024-11-16 11:29:02 +01:00
|
|
|
enable = (lib.elem "desktop" config.machine.services);
|
|
|
|
type = "fcitx5";
|
|
|
|
fcitx5 = {
|
|
|
|
waylandFrontend = true;
|
2024-11-20 20:32:38 +01:00
|
|
|
addons = with pkgs; [
|
|
|
|
fcitx5-chinese-addons
|
|
|
|
fcitx5-mozc
|
|
|
|
fcitx5-table-extra
|
|
|
|
];
|
2024-11-16 11:29:02 +01:00
|
|
|
};
|
2019-02-26 13:44:40 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|