dotfiles/systems/bartholomew/config/hardware.nix

18 lines
284 B
Nix
Raw Normal View History

2025-01-31 01:49:36 -06:00
{
config,
lib,
pkgs,
...
}:
{
hardware = {
firmware = builtins.attrValues {
inherit (pkgs)
rtl8761b-firmware
;
};
enableAllFirmware = true;
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}