find modules/ -name \*.nix -print0 | xargs -0 sed -i 's/RT73Firmware/RalinkFirmware/g'

This commit is contained in:
Shea Levy 2012-08-11 12:34:35 -04:00
parent 50350a15f1
commit 15a1efe023
3 changed files with 3 additions and 3 deletions

View File

@ -128,7 +128,7 @@ in
'';
# Include the firmware for various wireless cards.
networking.enableRT73Firmware = true;
networking.enableRalinkFirmware = true;
networking.enableIntel2200BGFirmware = true;
# To speed up further installation of packages, include the complete stdenv

View File

@ -152,7 +152,7 @@ in
services.nixosManual.enable = false;
# Include the firmware for various wireless cards.
networking.enableRT73Firmware = true;
networking.enableRalinkFirmware = true;
networking.enableIntel2200BGFirmware = true;
# To speed up further installation of packages, include the complete stdenv

View File

@ -19,6 +19,6 @@ with pkgs.lib;
config = mkDefault {
# That wireless card firmware not enabled because the corresponding
# build expression 'rt73fw' is broken.
networking.enableRT73Firmware = false;
networking.enableRalinkFirmware = false;
};
}