nixpkgs/modules/installer/scan/not-detected.nix
Nicolas Pierron def746fcdd Add Intel firmwars (iwlwifi-6000g2{a,b}-ucode).
svn path=/nixos/trunk/; revision=29020
2011-09-05 09:19:55 +00:00

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