1

Nixos: Update options soon to be deprecated

This commit is contained in:
2024-09-22 20:37:47 +02:00
parent 57f346fee0
commit edaa8588b6
2 changed files with 21 additions and 23 deletions

View File

@ -101,18 +101,23 @@
# videoDrivers = ["amdgpu"];
};
# NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout
# NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout.
# The laptop needs de-DE...
# Chinese Input
i18n.inputMethod.enabled = "fcitx5";
i18n.inputMethod.fcitx5 = {
waylandFrontend = true;
i18n.inputMethod = {
enable = true;
type = "fcitx5";
addons = with pkgs; [
fcitx5-gtk
libsForQt5.fcitx5-qt
fcitx5-chinese-addons
fcitx5-configtool # TODO: Remove this and set config through HomeManager
];
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-gtk
libsForQt5.fcitx5-qt # QT5
kdePackages.fcitx5-qt # QT6
fcitx5-chinese-addons
fcitx5-configtool # TODO: Remove this and set config through HomeManager
];
};
};
}