nixos-config/modules/core/hardware.nix

12 lines
223 B
Nix
Raw Normal View History

2024-06-21 20:41:52 +02:00
{ ... }:
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;
};
2023-11-05 11:40:44 +01:00
}