nixos-configuration/modules/amd-graphics.nix

15 lines
337 B
Nix
Raw Normal View History

2024-10-27 12:33:35 +01:00
{ pkgs, ... }:
2024-10-26 14:59:00 +02:00
{
config = {
2024-10-27 12:33:35 +01:00
boot.kernelModules = [ "amdgpu" ];
services.xserver.videoDrivers = [ "amdgpu" ];
2024-10-26 14:59:00 +02:00
2024-11-24 15:16:45 +01:00
hardware.graphics = {
2024-10-27 12:33:35 +01:00
extraPackages = with pkgs; [ amdvlk ];
extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
2024-10-26 14:59:00 +02:00
};
2024-10-27 12:33:35 +01:00
environment.systemPackages = with pkgs; [ nvtopPackages.amd ];
2024-10-26 14:59:00 +02:00
};
}