dotfiles/systems/charon/config/hardware.nix

18 lines
284 B
Nix
Raw Normal View History

2025-03-29 23:08:26 -05:00
{
config,
lib,
pkgs,
...
}:
{
hardware = {
firmware = builtins.attrValues {
inherit (pkgs)
rtl8761b-firmware
;
};
enableAllFirmware = true;
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}