feat: cleaned up some stuff

This commit is contained in:
Nick 2025-02-18 21:06:45 -06:00
parent a5996792ce
commit b8c25f618e
11 changed files with 51 additions and 49 deletions

View file

@ -0,0 +1,13 @@
{
config,
lib,
pkgs,
...
}:
{
hardware = {
firmware = [ pkgs.rtl8761b-firmware ];
enableAllFirmware = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}