2022-01-03 16:50:22 +00:00
|
|
|
{ lib, pkgs, ... }: {
|
2021-12-20 23:48:26 +00:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2021-12-21 16:22:00 +00:00
|
|
|
hardware.enableAllFirmware = true;
|
2022-01-16 11:22:44 +00:00
|
|
|
hardware.cpu.intel.updateMicrocode =
|
|
|
|
lib.mkIf ("${pkgs.system}" == "x86_64-linux") true;
|
|
|
|
hardware.cpu.amd.updateMicrocode =
|
|
|
|
lib.mkIf ("${pkgs.system}" == "x86_64-linux") true;
|
2021-12-21 16:22:00 +00:00
|
|
|
hardware.wirelessRegulatoryDatabase = true;
|
2021-12-20 23:48:26 +00:00
|
|
|
}
|