nixpkgs/modules/installer/scan/not-detected.nix
Eelco Dolstra 0a1fee9ec8 * 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
2011-10-24 23:41:33 +00:00

22 lines
588 B
Nix

# List all devices which are _not_ detected by nixos-hardware-scan.
# Common devices are enabled by default.
{ config, pkgs, ... }:
with pkgs.lib;
{
imports =
[ ../../hardware/network/intel-5000.nix
../../hardware/network/intel-6000.nix
../../hardware/network/intel-6000g2a.nix
../../hardware/network/intel-6000g2b.nix
../../hardware/network/broadcom-43xx.nix
];
config = mkDefault {
# That wireless card firmware not enabled because the corresponding
# build expression 'rt73fw' is broken.
networking.enableRT73Firmware = false;
};
}