From 0a1fee9ec8b0829e9545683dbc7a429a394f7c47 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 24 Oct 2011 23:41:33 +0000 Subject: [PATCH] * Add a module for the Broadcom firmware. Also, add it to the installation CD (though the kernel on the CD is not recent enough yet to actually support the device). (This is kind of an abuse of "not-detected.nix".) svn path=/nixos/trunk/; revision=30003 --- modules/hardware/network/broadcom-43xx.nix | 5 +++++ modules/installer/scan/not-detected.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 modules/hardware/network/broadcom-43xx.nix diff --git a/modules/hardware/network/broadcom-43xx.nix b/modules/hardware/network/broadcom-43xx.nix new file mode 100644 index 00000000000..f902babc4f6 --- /dev/null +++ b/modules/hardware/network/broadcom-43xx.nix @@ -0,0 +1,5 @@ +{ config, pkgs, ... }: + +{ + hardware.firmware = [ pkgs.bcm43xx ]; +} diff --git a/modules/installer/scan/not-detected.nix b/modules/installer/scan/not-detected.nix index 1a5beae9890..c378fe03691 100644 --- a/modules/installer/scan/not-detected.nix +++ b/modules/installer/scan/not-detected.nix @@ -10,6 +10,7 @@ with pkgs.lib; ../../hardware/network/intel-6000.nix ../../hardware/network/intel-6000g2a.nix ../../hardware/network/intel-6000g2b.nix + ../../hardware/network/broadcom-43xx.nix ]; config = mkDefault {