nix/modules/system/hardware/amd.nix

18 lines
303 B
Nix
Raw Normal View History

2024-03-12 21:38:05 +01:00
{ pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
2024-11-30 18:29:31 +01:00
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [
2024-03-12 21:38:05 +01:00
amdvlk
2024-06-25 10:31:41 +02:00
mesa.drivers
2024-03-12 21:38:05 +01:00
];
2024-11-30 18:29:31 +01:00
hardware.graphics.extraPackages32 = with pkgs; [
2024-03-12 21:38:05 +01:00
driversi686Linux.amdvlk
];
2024-03-18 16:30:09 +01:00
programs.gamemode.enable = true;
2024-03-12 21:38:05 +01:00
}