nix/modules/system/hardware/amd.nix
2024-11-30 18:29:31 +01:00

18 lines
303 B
Nix

{ pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [
amdvlk
mesa.drivers
];
hardware.graphics.extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
programs.gamemode.enable = true;
}