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