16 lines
301 B
Nix
16 lines
301 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# enable amd GPU acceleration (mesa, vulkan, egl)
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
extraPackages = with pkgs; [
|
|
amdgpu_top
|
|
];
|
|
};
|
|
|
|
# sets boot.initrd.kernelModules = amdgpu
|
|
hardware.amdgpu.initrd.enable = true;
|
|
}
|