dotfiles/systems/ceres/config/hardware.nix

16 lines
234 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 = {
2025-01-08 19:06:14 -06:00
firmware = [
pkgs.rtl8761b-firmware
];
2024-10-06 15:25:05 -05:00
enableAllFirmware = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}