nix/modules/system/hardware/amd.nix
2024-12-10 18:38:17 +01:00

17 lines
243 B
Nix

{ pkgs, ... }:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
};
hardware.graphics.extraPackages = with pkgs; [
amdvlk
];
hardware.graphics.extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
}