AMD: add configurations for graphics cards

This commit is contained in:
Johannes Arnold
2021-03-23 19:34:15 +01:00
parent 758bc63af2
commit f2b2ae018d
4 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
services.xserver.videoDrivers = [ "amdgpu" ];
hardware.opengl.extraPackages = with pkgs; [
rocm-opencl-icd
rocm-opencl-runtime
amdvlk
];
hardware.opengl = {
driSupport = lib.mkDefault true;
driSupport32Bit = lib.mkDefault true;
};
}

View File

@@ -0,0 +1,4 @@
{
imports = [ ../. ];
boot.kernelParams = [ "radeon.cik_support=0" "amdgpu.cik_support=1" ];
}

View File

@@ -0,0 +1,4 @@
{
imports = [ ../. ];
boot.kernelParams = [ "radeon.si_support=0" "amdgpu.si_support=1" ];
}