28 lines
666 B
Nix
28 lines
666 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
|
||
|
# include hyprland configs
|
||
|
home.file.".config/hypr/environment.conf".text = ''
|
||
|
|
||
|
# firefox
|
||
|
env = MOZ_ENABLE_WAYLAND,1
|
||
|
|
||
|
# electron
|
||
|
env = ELECTRON_OZONE_PLATFORM_HINT,auto
|
||
|
|
||
|
# desktop frameworks
|
||
|
env = CLUTTER_BACKEND,wayland
|
||
|
env = GDK_BACKEND,wayland,x11
|
||
|
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
||
|
env = QT_QPA_PLATFORM,wayland;xcb
|
||
|
env = QT_QPA_PLATFORMTHEME,qt5ct
|
||
|
env = QT_QPA_PLATFORMTHEME,qt6ct
|
||
|
env = QT_SCALE_FACTOR,1
|
||
|
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
||
|
env = XDG_CURRENT_DESKTOP,Hyprland
|
||
|
env = XDG_SESSION_DESKTOP,Hyprland
|
||
|
env = XDG_SESSION_TYPE,wayland
|
||
|
|
||
|
'';
|
||
|
}
|