diff options
author | sefidel <contact@sefidel.net> | 2024-05-12 12:50:27 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-05-12 12:50:27 +0900 |
commit | ac28303a6750f90eb0925414346dba9f66c22006 (patch) | |
tree | d9d6e865a223899c9653ccdac6db8245c4048fb0 /home/profiles/gui | |
parent | 1d4e36887f519e735b7bb1b7521455d94aa0ccb9 (diff) | |
download | nixrc-ac28303a6750f90eb0925414346dba9f66c22006.tar.gz nixrc-ac28303a6750f90eb0925414346dba9f66c22006.zip |
fix(home/gui): disable NIXOS_OZONE_WL
Diffstat (limited to 'home/profiles/gui')
-rw-r--r-- | home/profiles/gui/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index 2238585..e491e76 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -105,7 +105,9 @@ in ]; home.sessionVariables = { - NIXOS_OZONE_WL = 1; # NOTE: might cause problems with old electron + # Disabled as Element/Discord currently uses an old version of Electron + # that doesn't support IM. + # NIXOS_OZONE_WL = 1; # NOTE: might cause problems with old electron _JAVA_AWT_WM_NONREPARENTING = 1; # Fix 'grey screen' issue on java apps SDL_VIDEODRIVER = "wayland"; }; |