nixos-configuration/modules/amd-graphics.nix
2024-10-27 12:26:59 +01:00

23 lines
373 B
Nix

{
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
];
};
}