nixos-configuration/modules/amd-graphics.nix

25 lines
390 B
Nix
Raw Normal View History

2024-10-26 14:59:00 +02:00
{
lib,
config,
pkgs,
...
}: {
config = {
boot.kernelModules = ["amdgpu"];
services.xserver.videoDrivers = ["amdgpu"];
hardware.opengl = {
extraPackages = with pkgs; [
amdvlk
];
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
};
environment.systemPackages = with pkgs; [
nvtopPackages.amd
];
};
}