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

15 lines
335 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 ];
};
}