nixpkgs-suyu/modules/installer/scan/not-detected.nix
Peter Simons 18d52f8f4b modules/installer/scan/not-detected.nix: don't depend on pkgs.rt73fw
The rt73 firmware has disappeared from the upstream server, and we don't
have a new URL yet.

svn path=/nixos/trunk/; revision=29620
2011-10-04 08:45:15 +00:00

20 lines
541 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 {
# That wireless card firmware not enabled because the corresponding
# build expression 'rt73fw' is broken.
networking.enableRT73Firmware = false;
};
}