Nixos: Update options soon to be deprecated
This commit is contained in:
@ -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";
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
type = "fcitx5";
|
||||||
|
|
||||||
|
fcitx5 = {
|
||||||
waylandFrontend = true;
|
waylandFrontend = true;
|
||||||
|
|
||||||
addons = with pkgs; [
|
addons = with pkgs; [
|
||||||
fcitx5-gtk
|
fcitx5-gtk
|
||||||
libsForQt5.fcitx5-qt
|
libsForQt5.fcitx5-qt # QT5
|
||||||
|
kdePackages.fcitx5-qt # QT6
|
||||||
fcitx5-chinese-addons
|
fcitx5-chinese-addons
|
||||||
fcitx5-configtool # TODO: Remove this and set config through HomeManager
|
fcitx5-configtool # TODO: Remove this and set config through HomeManager
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user