nixfiles/profiles/base/hardware.nix
ChaotiCryptidz efc786c4e2
nonixos
2022-03-09 19:26:33 +00:00

10 lines
344 B
Nix

{ lib, pkgs, ... }: {
hardware.enableRedistributableFirmware = true;
hardware.enableAllFirmware = true;
hardware.cpu.intel.updateMicrocode =
lib.mkIf ("${pkgs.system}" == "x86_64-linux") true;
hardware.cpu.amd.updateMicrocode =
lib.mkIf ("${pkgs.system}" == "x86_64-linux") true;
hardware.wirelessRegulatoryDatabase = true;
}