nix-configs/hosts/x86_64/misc/macbook-intel.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

12 lines
249 B
Nix

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