You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of writing this, the wiki contains the following lines here:
If you start experiencing lag and FPS drops in games or programs like Blender on
**stable** NixOS when using the Hyprland flake, it is most likely a `mesa`
version mismatch between your system and Hyprland.
You can fix this issue by using `mesa` from Hyprland's `nixpkgs` input:
```nix {filename="configuration.nix"}
{pkgs, inputs, ...}: let pkgs-unstable = inputs.hyprland.inputs.nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system};in { hardware.opengl = { package = pkgs-unstable.mesa.drivers; # if you also want 32-bit support (e.g for Steam) driSupport32Bit = true; package32 = pkgs-unstable.pkgsi686Linux.mesa.drivers; };}
This is outdated, as the NixOS option hardware.opengl was removed with the release of NixOS 24.11 a few months ago.
This should either be updated (if still relevant and possible) or removed.
I am not aware of any way to achieve similar results with the new options of NixOS 24.11, maybe @fufexan knows more?
The text was updated successfully, but these errors were encountered:
hardware.opengl has been renamed to hardware.graphics. The inner options are the same. Afaik it's only a deprecation and it will be finally removed next release or in 25.11.
As of writing this, the wiki contains the following lines here:
This is outdated, as the NixOS option
hardware.opengl
was removed with the release of NixOS 24.11 a few months ago.This should either be updated (if still relevant and possible) or removed.
I am not aware of any way to achieve similar results with the new options of NixOS 24.11, maybe @fufexan knows more?
The text was updated successfully, but these errors were encountered: