nixos-configuration/modules/amd-graphics.nix
2024-11-24 15:16:45 +01:00

15 lines
337 B
Nix

{ pkgs, ... }:
{
config = {
boot.kernelModules = [ "amdgpu" ];
services.xserver.videoDrivers = [ "amdgpu" ];
hardware.graphics = {
extraPackages = with pkgs; [ amdvlk ];
extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
};
environment.systemPackages = with pkgs; [ nvtopPackages.amd ];
};
}