16 lines
254 B
Nix
16 lines
254 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
||
|
|
||
|
hardware.opengl.driSupport32Bit = true;
|
||
|
|
||
|
hardware.opengl.extraPackages = with pkgs; [
|
||
|
amdvlk
|
||
|
];
|
||
|
|
||
|
hardware.opengl.extraPackages32 = with pkgs; [
|
||
|
driversi686Linux.amdvlk
|
||
|
];
|
||
|
}
|