Add new file

This commit is contained in:
Aaron Honeycutt 2024-03-01 22:19:37 +00:00
parent 45a1b97af9
commit d354fffd4d

View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
boot.kernelModules = [ "wl" ];
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
boot.blacklistedKernelModules = [ "b43" "bcma" ];
# Name your host machine
networking.hostName = "macbook";
}