added files

This commit is contained in:
kenji
2025-08-19 17:03:16 -05:00
parent aae0668878
commit b1daadc71e
9 changed files with 606 additions and 49 deletions
+30
View File
@@ -0,0 +1,30 @@
{
config,
pkgs,
...
}: {
wayland.windowManager.hyprland.settings = {
env = [
# Input method
"QT_IM_MODULE, fcitx"
"XMODIFIERS, @im=fcitx"
"SDL_IM_MODULE, fcitx"
"GLFW_IM_MODULE, ibus"
"INPUT_METHOD, fcitx"
# Wayland
"ELECTRON_OZONE_PLATFORM_HINT, auto"
# Themes
"QT_QPA_PLATFORM, wayland"
"QT_QPA_PLATFORMTHEME, kde"
"XDG_MENU_PREFIX, plasma-"
# Virtual environment
"ILLOGICAL_IMPULSE_VIRTUAL_ENV, ~/.local/state/quickshell/.venv"
# Terminal application
"TERMINAL, kitty -1"
];
};
}