From fc18ac401644b293dd4d2eb1526e3c4999c1d5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Thu, 23 Oct 2025 10:55:31 +0800 Subject: [PATCH] installer-macbook-pro-2009: enable b43 driver --- default.nix | 1 + nix/nixosModules/extra/macbook-broacom-b43.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 nix/nixosModules/extra/macbook-broacom-b43.nix diff --git a/default.nix b/default.nix index 2c6222bd..1366328f 100644 --- a/default.nix +++ b/default.nix @@ -20,6 +20,7 @@ ./nix/nixosModules/extra/macbook-pro-radeon.nix ./nix/nixosModules/extra/macbook-swap-cmd-opt.nix ./nix/nixosModules/extra/macbook-swap-fn-ctrl.nix + ./nix/nixosModules/extra/macbook-broacom-b43.nix ]; }; }; diff --git a/nix/nixosModules/extra/macbook-broacom-b43.nix b/nix/nixosModules/extra/macbook-broacom-b43.nix new file mode 100644 index 00000000..705b04aa --- /dev/null +++ b/nix/nixosModules/extra/macbook-broacom-b43.nix @@ -0,0 +1,4 @@ +{ + nixpkgs.config.allowUnfree = true; + networking.enableB43Firmware = true; +}