From 831ddea6a9b17d414db875c2c86f3c589d372f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Tue, 20 Feb 2024 18:01:50 +0100 Subject: [PATCH] fix(libra): Reenable dcdebugmask Issues are still pressent when removing it --- machines/libra/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/libra/default.nix b/machines/libra/default.nix index 0274625..7ff81f9 100644 --- a/machines/libra/default.nix +++ b/machines/libra/default.nix @@ -20,7 +20,7 @@ }; boot.kernelPackages = pkgs.linuxPackages_latest; - # boot.kernelParams = [ "amdgpu.sg_display=0" "amdgpu.dcdebugmask=0x10" ]; + boot.kernelParams = [ "amdgpu.dcdebugmask=0x10" ]; # Fixes graphical issues hardware.opengl.enable = true; hardware.bluetooth.enable = true;