desktop: only enable 32-bit graphics on x86_64-linux

Should fix an assertion issue with aarch64.
This commit is contained in:
Donovan Glover 2025-02-22 20:57:50 -05:00
parent 8c9b84dfbd
commit ad599dfc28
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -25,7 +25,7 @@ in
}; };
config = { config = {
hardware.graphics.enable32Bit = true; hardware.graphics.enable32Bit = mkIf (pkgs.system == "x86_64-linux") true;
programs = { programs = {
hyprland.enable = mkIf (!isContainer) true; hyprland.enable = mkIf (!isContainer) true;