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