2024-12-20 00:28:56 +01:00
|
|
|
{ pkgs, ... }:
|
2023-11-05 17:56:55 +01:00
|
|
|
{
|
2024-06-21 09:35:48 +02:00
|
|
|
hardware = {
|
2024-06-21 16:33:21 +02:00
|
|
|
graphics = {
|
2024-06-21 09:35:48 +02:00
|
|
|
enable = true;
|
2024-06-21 16:33:21 +02:00
|
|
|
# driSupport = true; # Has no effect anymore, as of 2024-06-21
|
|
|
|
|
# driSupport32Bit = true;
|
2024-06-21 09:35:48 +02:00
|
|
|
};
|
|
|
|
|
enableRedistributableFirmware = true;
|
2024-12-20 00:28:56 +01:00
|
|
|
opengl = {
|
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
|
amdvlk
|
|
|
|
|
];
|
|
|
|
|
# For 32 bit applications as well
|
|
|
|
|
extraPackages32 = with pkgs; [
|
|
|
|
|
driversi686Linux.amdvlk
|
|
|
|
|
];
|
|
|
|
|
};
|
2024-06-21 09:35:48 +02:00
|
|
|
};
|
2023-11-05 11:40:44 +01:00
|
|
|
}
|