nixpkgs/modules/installer/scan/not-detected.nix
Eelco Dolstra 9fca36bfa3 * Add the Intel 5000/6000 firmwares to the installation media.
svn path=/nixos/trunk/; revision=26081
2011-02-23 19:06:14 +00:00

18 lines
360 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
];
config = mkDefault {
# Wireless card firmware
networking.enableRT73Firmware = true;
};
}