13 lines
369 B
Nix
13 lines
369 B
Nix
![]() |
{
|
||
|
environment.sessionVariables = {
|
||
|
ELECTRON_OZONE_PLATFORM_HINT = "wayland";
|
||
|
MOZ_ENABLE_WAYLAND = "1";
|
||
|
QT_QPA_PLATFORM = "wayland"; # Qt Applications
|
||
|
GDK_BACKEND = "wayland"; # GTK Applications
|
||
|
XDG_SESSION_TYPE = "wayland"; # Electron Applications
|
||
|
SDL_VIDEODRIVER = "wayland";
|
||
|
CLUTTER_BACKEND = "wayland";
|
||
|
NIXOS_OZONE_WL = "1";
|
||
|
};
|
||
|
}
|