nix-configs/hosts/x86_64/macbook-intel.nix
Aaron Honeycutt d354fffd4d Add new file
2024-03-01 22:19:37 +00:00

10 lines
262 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";
}