From b1da425beb466d063de9a8629b6a12a666842fae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Fri, 19 Jan 2024 19:16:55 +0100 Subject: [PATCH] fix(libra): Manually set kernel params --- machines/libra/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/machines/libra/default.nix b/machines/libra/default.nix index 13361da..25b958e 100644 --- a/machines/libra/default.nix +++ b/machines/libra/default.nix @@ -9,7 +9,7 @@ nixos-hardware.nixosModules.common-pc-laptop nixos-hardware.nixosModules.common-pc-laptop-ssd # nixos-hardware.nixosModules.common-cpu-amd-pstate - nixos-hardware.nixosModules.common-cpu-amd-raphael-igpu + nixos-hardware.nixosModules.common-cpu-amd-raphael-igpu # not working? nixos-hardware.nixosModules.common-gpu-amd ]; @@ -20,6 +20,7 @@ }; boot.kernelPackages = pkgs.linuxPackages_6_6; + boot.kernelParams = [ "amdgpu.sg_display=0" ]; hardware.opengl.enable = true; hardware.bluetooth.enable = true;