nixos: nuke gtk2
This commit is contained in:
parent
e732851aa1
commit
2f57cad936
4 changed files with 25 additions and 14 deletions
|
@ -1,13 +1,27 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
i18n.inputMethod = {
|
lib,
|
||||||
enabled = "fcitx5";
|
pkgs,
|
||||||
fcitx5.addons = with pkgs; [
|
...
|
||||||
|
}: let
|
||||||
|
package = pkgs.qt6Packages.fcitx5-with-addons.override {
|
||||||
|
addons = with pkgs; [
|
||||||
qt6Packages.fcitx5-chinese-addons
|
qt6Packages.fcitx5-chinese-addons
|
||||||
fcitx5-pinyin-minecraft
|
fcitx5-pinyin-minecraft
|
||||||
fcitx5-pinyin-moegirl
|
fcitx5-pinyin-moegirl
|
||||||
fcitx5-pinyin-zhwiki
|
fcitx5-pinyin-zhwiki
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
in {
|
||||||
|
home.packages = [
|
||||||
|
package
|
||||||
|
];
|
||||||
|
|
||||||
|
systemd.user.services.fcitx5-daemon = {
|
||||||
|
Unit.Description = "Fcitx5 input method editor";
|
||||||
|
Unit.PartOf = ["graphical-session.target"];
|
||||||
|
Service.ExecStart = lib.getExe' package "fcitx5";
|
||||||
|
Install.WantedBy = ["graphical-session.target"];
|
||||||
|
};
|
||||||
|
|
||||||
xdg.configFile."fcitx5/conf/classicui.conf".text = ''
|
xdg.configFile."fcitx5/conf/classicui.conf".text = ''
|
||||||
Vertical Candidate List=True
|
Vertical Candidate List=True
|
||||||
|
|
|
@ -11,9 +11,6 @@
|
||||||
../mako
|
../mako
|
||||||
../swayidle
|
../swayidle
|
||||||
../swaylock
|
../swaylock
|
||||||
|
|
||||||
# FIXME: hack
|
|
||||||
./unset-im-module.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{lib, ...}: {
|
|
||||||
options.home.sessionVariables = lib.mkOption {
|
|
||||||
apply = x: removeAttrs x ["QT_IM_MODULE" "GTK_IM_MODULE"];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -23,10 +23,15 @@ in {
|
||||||
|
|
||||||
# HACK: no more qt5
|
# HACK: no more qt5
|
||||||
libsForQt5 = prev.libsForQt5.overrideScope (_qt5final: _qt5prev: {
|
libsForQt5 = prev.libsForQt5.overrideScope (_qt5final: _qt5prev: {
|
||||||
fcitx5-with-addons = prev.qt6Packages.fcitx5-with-addons;
|
|
||||||
fcitx5-qt = prev.emptyDirectory;
|
fcitx5-qt = prev.emptyDirectory;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
# HACK: no more gtk2
|
||||||
|
gtk2 = prev.emptyDirectory;
|
||||||
|
gnome-themes-extra = prev.gnome-themes-extra.overrideAttrs {
|
||||||
|
configureFlags = ["--disable-gtk2-engine"];
|
||||||
|
};
|
||||||
|
|
||||||
sway-unwrapped = addPatches prev.sway-unwrapped [
|
sway-unwrapped = addPatches prev.sway-unwrapped [
|
||||||
# text_input: Implement input-method popups
|
# text_input: Implement input-method popups
|
||||||
# https://github.com/swaywm/sway/pull/7226
|
# https://github.com/swaywm/sway/pull/7226
|
||||||
|
|
Loading…
Reference in a new issue