From 5060160634e565feda706921fb0537b921cffbc4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Aug 2013 03:32:28 +0200 Subject: [PATCH] not-detected.nix: Enable all firmware Note that since the configuration produced by nixos-hardware-scan includes not-detected.nix, you get all firmware when following the regular installation procedure. Issue #87. --- modules/installer/scan/not-detected.nix | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/modules/installer/scan/not-detected.nix b/modules/installer/scan/not-detected.nix index f79a3f09e05..814858fdffd 100644 --- a/modules/installer/scan/not-detected.nix +++ b/modules/installer/scan/not-detected.nix @@ -5,20 +5,5 @@ with pkgs.lib; { - imports = - [ - ../../hardware/network/intel-4965agn.nix - ../../hardware/network/intel-5000.nix - ../../hardware/network/intel-5150.nix - ../../hardware/network/intel-6000.nix - ../../hardware/network/intel-6000g2a.nix - ../../hardware/network/intel-6000g2b.nix - ../../hardware/network/broadcom-43xx.nix - ]; - - config = mkDefault { - # That wireless card firmware not enabled because the corresponding - # build expression 'rt73fw' is broken. - networking.enableRalinkFirmware = false; - }; + hardware.enableAllFirmware = true; }