diff --git a/modules/installer/cd-dvd/system-tarball-fuloong2f.nix b/modules/installer/cd-dvd/system-tarball-fuloong2f.nix index 5b6e0036639b..e988647cf139 100644 --- a/modules/installer/cd-dvd/system-tarball-fuloong2f.nix +++ b/modules/installer/cd-dvd/system-tarball-fuloong2f.nix @@ -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 diff --git a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix index f53079ecd9b0..52df5a56ee7b 100644 --- a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix +++ b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix @@ -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 diff --git a/modules/installer/scan/not-detected.nix b/modules/installer/scan/not-detected.nix index 34e71479322c..f79a3f09e050 100644 --- a/modules/installer/scan/not-detected.nix +++ b/modules/installer/scan/not-detected.nix @@ -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; }; }