1

Disable unneeded nixinator modules

This commit is contained in:
2023-04-23 13:02:14 +02:00
parent 5252ea5d2f
commit d4182f8a79

View File

@ -18,7 +18,7 @@ rec {
config = {
modules = {
audio = {
enable = true;
enable = false;
carla.enable = false;
bitwig.enable = true; # TODO: Check what happens when upgrade plan ends, do I need to pin the version then?
@ -44,7 +44,7 @@ rec {
enable = true;
prism.enable = true;
bottles.enable = true;
bottles.enable = false;
# TODO: Webcord
# discordChromium.enable = false;
# discordElectron.enable = false; # This is the nixpkgs version, prefer the one from flatpak module
@ -52,7 +52,6 @@ rec {
steam = {
enable = true;
protonGE = true; # TODO: Using protonup-qt now
gamescope = true;
adwaita = true;
protonup = true;
@ -67,12 +66,12 @@ rec {
# 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
# ];
};
}