nixos-config/modules/core/hardware.nix

13 lines
266 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ pkgs, ... }:
{
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
extraPackages = with pkgs; [];
};
enableRedistributableFirmware = true;
};
2023-11-05 11:40:44 +01:00
}