From ad599dfc284cee9cbb09b996d62e1b645e6ce701 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 22 Feb 2025 20:57:50 -0500 Subject: [PATCH] desktop: only enable 32-bit graphics on x86_64-linux Should fix an assertion issue with aarch64. --- modules/desktop.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/desktop.nix b/modules/desktop.nix index 3bf29e2e..3da37170 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -25,7 +25,7 @@ in }; config = { - hardware.graphics.enable32Bit = true; + hardware.graphics.enable32Bit = mkIf (pkgs.system == "x86_64-linux") true; programs = { hyprland.enable = mkIf (!isContainer) true;