dotfiles/systems/mars/config/hardware.nix

19 lines
308 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;
ledger.enable = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}