mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 13:32:15 -06:00
16 lines
236 B
Nix
16 lines
236 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
{
|
||
|
|
hardware = {
|
||
|
|
firmware = [
|
||
|
|
pkgs.rtl8761b-firmware
|
||
|
|
];
|
||
|
|
enableAllFirmware = true;
|
||
|
|
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
|
};
|
||
|
|
}
|