1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 07:28:32 +02:00

Add condition for kernel version 6.2 and above

This commit is contained in:
Steffen Weitz 2023-03-29 11:32:52 +02:00
parent 5fc0f23520
commit 9dbe8dea5f

View File

@ -1,6 +1,7 @@
{ lib, pkgs, ... }:
{
# Sets the kernel version to the latest kernel to make the usage of the iGPU possible if your kernel version is too old
# Disables scatter/gather which was introduced with kernel version 6.2
# It produces completely white or flashing screens when enabled while using the iGPU of Ryzen 7000-series CPUs (Raphael)
@ -11,5 +12,9 @@
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = ["amdgpu.sg_display=0"];
})
(lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.2") {
kernelParams = ["amdgpu.sg_display=0"];
})
];
}