dotfiles/systems/mars/config/hardware.nix

19 lines
308 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
config,
lib,
pkgs,
...
}:
{
2024-10-06 15:25:05 -05:00
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;
};
}