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

@ -388,6 +388,7 @@ rec {
protonmail-bridge protonmail-bridge
thunderbird # TODO: Email module thunderbird # TODO: Email module
# xwaylandvideobridge # NOTE: Doesn't work # xwaylandvideobridge # NOTE: Doesn't work
AusweisApp2
# Office # Office
wacomtablet # For xournalpp/krita wacomtablet # For xournalpp/krita
@ -402,19 +403,6 @@ rec {
# TODO: Module, I need to add python packages from multiple modules to the same interpreter # TODO: Module, I need to add python packages from multiple modules to the same interpreter
python312 python312
AusweisApp2
# Games
# NOTE: Does not run with wayland
# (retroarch.override {
# cores = with libretro; [
# desmume
# melonds
# ];
# })
# melonDS # NOTE: Doesn't work - No QT platform plugin for wayland
desmume
# Use NixCommunity binary cache # Use NixCommunity binary cache
cachix cachix
@ -826,6 +814,11 @@ rec {
}; };
}; };
# Fix Discord rich presence for Flatpak
systemd.user.tmpfiles.rules = [
"L %t/discord-ipc-0 - - - - app/com.discordapp.Discord/discord-ipc-0"
];
# Nicely reload system units when changing configs # Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";
} }

View File

@ -101,18 +101,23 @@
# videoDrivers = ["amdgpu"]; # 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... # The laptop needs de-DE...
# Chinese Input # Chinese Input
i18n.inputMethod.enabled = "fcitx5"; i18n.inputMethod = {
i18n.inputMethod.fcitx5 = { enable = true;
waylandFrontend = true; type = "fcitx5";
addons = with pkgs; [ fcitx5 = {
fcitx5-gtk waylandFrontend = true;
libsForQt5.fcitx5-qt
fcitx5-chinese-addons addons = with pkgs; [
fcitx5-configtool # TODO: Remove this and set config through HomeManager fcitx5-gtk
]; libsForQt5.fcitx5-qt # QT5
kdePackages.fcitx5-qt # QT6
fcitx5-chinese-addons
fcitx5-configtool # TODO: Remove this and set config through HomeManager
];
};
}; };
} }