1

Disable blender + quartus, enable fcitx5

This commit is contained in:
2023-07-03 19:27:28 +02:00
parent 2ac1d3bf38
commit 35ec4b971f
2 changed files with 19 additions and 9 deletions

View File

@ -440,7 +440,7 @@ rec {
# Media
wacomtablet
blender
# blender
godot
obs-studio
# vlc # Addition to mpv without any shaders etc

View File

@ -45,6 +45,16 @@ rec {
"HDMI-A-1" = [1 2 3 4 5 6 7 8 9];
"HDMI-A-2" = [10];
};
autostart = [
"hyprctl dispatch exec \"sleep 15s && fcitx5\""
];
floating = [
{
class = "fcitx";
}
];
};
# audio = {
@ -93,18 +103,18 @@ rec {
};
home.packages = with pkgs; [
quartus-prime-lite # Intel FPGA design software
# quartus-prime-lite # Intel FPGA design software
];
# 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.addons = with pkgs; [
# fcitx5-gtk
# libsForQt5.fcitx5-qt
# fcitx5-chinese-addons
# fcitx5-configtool # TODO: Remove this and set config through HomeManager
# ];
i18n.inputMethod.enabled = "fcitx5";
i18n.inputMethod.fcitx5.addons = with pkgs; [
fcitx5-gtk
libsForQt5.fcitx5-qt
fcitx5-chinese-addons
fcitx5-configtool # TODO: Remove this and set config through HomeManager
];
};
}