Nixos: Update options soon to be deprecated
This commit is contained in:
@ -388,6 +388,7 @@ rec {
|
||||
protonmail-bridge
|
||||
thunderbird # TODO: Email module
|
||||
# xwaylandvideobridge # NOTE: Doesn't work
|
||||
AusweisApp2
|
||||
|
||||
# Office
|
||||
wacomtablet # For xournalpp/krita
|
||||
@ -402,19 +403,6 @@ rec {
|
||||
# TODO: Module, I need to add python packages from multiple modules to the same interpreter
|
||||
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
|
||||
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
|
||||
systemd.user.startServices = "sd-switch";
|
||||
}
|
||||
|
@ -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 = {
|
||||
i18n.inputMethod = {
|
||||
enable = true;
|
||||
type = "fcitx5";
|
||||
|
||||
fcitx5 = {
|
||||
waylandFrontend = true;
|
||||
|
||||
addons = with pkgs; [
|
||||
fcitx5-gtk
|
||||
libsForQt5.fcitx5-qt
|
||||
libsForQt5.fcitx5-qt # QT5
|
||||
kdePackages.fcitx5-qt # QT6
|
||||
fcitx5-chinese-addons
|
||||
fcitx5-configtool # TODO: Remove this and set config through HomeManager
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user