dotfiles/systems/desktop/config/hardware.nix

19 lines
316 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
config,
lib,
pkgs,
...
}: {
hardware = {
firmware = builtins.attrValues {
inherit
(pkgs)
rtl8761b-firmware
;
};
2024-10-06 15:25:05 -05:00
enableAllFirmware = true;
ledger.enable = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}