From ad3adb8db2926d62f5fa449ed3d9cfd5ea459bca Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sat, 5 Oct 2024 18:27:42 -0700 Subject: [PATCH] Disable PSR to avoid laptop crashing --- nalai/etc/nixos/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nalai/etc/nixos/configuration.nix b/nalai/etc/nixos/configuration.nix index 0dd0afc..f877be3 100644 --- a/nalai/etc/nixos/configuration.nix +++ b/nalai/etc/nixos/configuration.nix @@ -11,6 +11,11 @@ ]; # Bootloader. + # Disable PSR according to + # https://bbs.archlinux.org/viewtopic.php?pid=2191514#p2191514 + boot.kernelParams = [ + "amdgpu.dcdebugmask=0x12" + ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;