nixos-config/modules/core/hardware.nix

12 lines
266 B
Nix

{ pkgs, ... }:
{
hardware = {
graphics = {
enable = true;
# driSupport = true; # Has no effect anymore, as of 2024-06-21
# driSupport32Bit = true;
extraPackages = with pkgs; [];
};
enableRedistributableFirmware = true;
};
}