mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
10 lines
262 B
Nix
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";
|
|
}
|