refactor: replaced with pkgs with builtins.attrValues

This commit is contained in:
Nick 2024-11-09 00:35:10 -06:00
parent 3c08f7f35f
commit 85bb65fea7
2 changed files with 12 additions and 2 deletions

View file

@ -5,7 +5,12 @@
...
}: {
hardware = {
firmware = [pkgs.rtl8761b-firmware];
firmware = builtins.attrValues {
inherit
(pkgs)
rtl8761b-firmware
;
};
enableAllFirmware = true;
ledger.enable = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;