AMD: add configurations for graphics cards
This commit is contained in:
parent
758bc63af2
commit
f2b2ae018d
17
common/gpu/amd/default.nix
Normal file
17
common/gpu/amd/default.nix
Normal 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;
|
||||
};
|
||||
}
|
4
common/gpu/amd/sea-islands/default.nix
Normal file
4
common/gpu/amd/sea-islands/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
imports = [ ../. ];
|
||||
boot.kernelParams = [ "radeon.cik_support=0" "amdgpu.cik_support=1" ];
|
||||
}
|
4
common/gpu/amd/southern-islands/default.nix
Normal file
4
common/gpu/amd/southern-islands/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
imports = [ ../. ];
|
||||
boot.kernelParams = [ "radeon.si_support=0" "amdgpu.si_support=1" ];
|
||||
}
|
|
@ -83,6 +83,9 @@
|
|||
common-cpu-intel-sandy-bridge = import ./common/cpu/intel/sandy-bridge;
|
||||
common-gpu-nvidia = import ./common/gpu/nvidia.nix;
|
||||
common-gpu-nvidia-disable = import ./common/gpu/nvidia-disable.nix;
|
||||
common-gpu-amd = import ./common/gpu/amd;
|
||||
common-gpu-amd-sea-islands = import ./common/gpu/amd/sea-islands;
|
||||
common-gpu-amd-southern-islands = import ./common/gpu/amd/southern-islands;
|
||||
common-pc-hdd = import ./common/pc/hdd;
|
||||
common-pc-laptop-hdd = import ./common/pc/laptop/hdd;
|
||||
common-pc-laptop-ssd = import ./common/pc/ssd;
|
||||
|
|
Loading…
Reference in a new issue