diff --git a/hosts/laptop/modules/environment.nix b/hosts/laptop/modules/environment.nix index d312ec8..f702b73 100644 --- a/hosts/laptop/modules/environment.nix +++ b/hosts/laptop/modules/environment.nix @@ -1,11 +1,12 @@ { ... }: { # Enable wayland support - environment.sessionVariables ={ - NIXOS_OZONE_WL = "1"; + environment.sessionVariables = { + # Wayland electron has no hardware acceleration support, so disable it for now + # NIXOS_OZONE_WL = "1"; STEAM_FORCE_DESKTOPUI_SCALING = "2"; }; # Enable zsh-autocomplete compatibility environment.pathsToLink = [ "/share/zsh" ]; -} \ No newline at end of file +}