mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 10:39:42 +01:00
18 lines
343 B
Nix
18 lines
343 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|