nixos-config/modules/core/hardware.nix

21 lines
428 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-11-05 17:56:55 +01:00
{
2024-06-21 09:35:48 +02:00
hardware = {
graphics = {
2024-06-21 09:35:48 +02:00
enable = true;
# driSupport = true; # Has no effect anymore, as of 2024-06-21
# driSupport32Bit = true;
2024-06-21 09:35:48 +02:00
};
enableRedistributableFirmware = true;
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
}