dotfiles/systems/mars/config/hardware.nix

19 lines
308 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -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;
};
}