2010-09-25 02:32:37 -07:00
|
|
|
# List all devices which are _not_ detected by nixos-hardware-scan.
|
|
|
|
# Common devices are enabled by default.
|
2011-02-23 11:06:14 -08:00
|
|
|
{ config, pkgs, ... }:
|
2010-09-25 02:32:37 -07:00
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
2011-02-23 11:06:14 -08:00
|
|
|
imports =
|
2011-12-30 15:26:06 -08:00
|
|
|
[
|
|
|
|
../../hardware/network/intel-4965agn.nix
|
|
|
|
../../hardware/network/intel-5000.nix
|
2012-01-03 06:12:41 -08:00
|
|
|
../../hardware/network/intel-5150.nix
|
2011-02-23 11:06:14 -08:00
|
|
|
../../hardware/network/intel-6000.nix
|
2011-09-05 02:19:55 -07:00
|
|
|
../../hardware/network/intel-6000g2a.nix
|
|
|
|
../../hardware/network/intel-6000g2b.nix
|
2011-10-24 16:41:33 -07:00
|
|
|
../../hardware/network/broadcom-43xx.nix
|
2011-02-23 11:06:14 -08:00
|
|
|
];
|
|
|
|
|
2010-09-25 02:32:37 -07:00
|
|
|
config = mkDefault {
|
2011-10-04 01:45:15 -07:00
|
|
|
# That wireless card firmware not enabled because the corresponding
|
|
|
|
# build expression 'rt73fw' is broken.
|
2012-08-11 09:34:35 -07:00
|
|
|
networking.enableRalinkFirmware = false;
|
2010-09-25 02:32:37 -07:00
|
|
|
};
|
|
|
|
}
|