nix/modules/system/hardware/amd.nix

17 lines
243 B
Nix
Raw Normal View History

2024-03-12 21:38:05 +01:00
{ pkgs, ... }:
{
2024-12-10 18:38:17 +01:00
hardware.graphics = {
enable = true;
enable32Bit = true;
};
2024-03-12 21:38:05 +01:00
2024-11-30 18:29:31 +01:00
hardware.graphics.extraPackages = with pkgs; [
2024-03-12 21:38:05 +01:00
amdvlk
];
2024-11-30 18:29:31 +01:00
hardware.graphics.extraPackages32 = with pkgs; [
2024-03-12 21:38:05 +01:00
driversi686Linux.amdvlk
];
}