about summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-10-12 16:32:01 +0200
committerGitHub <noreply@github.com>2017-10-12 16:32:01 +0200
commite13d0c3435a60e6873cb639291f1ed52de59da73 (patch)
tree061e4acafc139de5211cd44dfacf1d2d7a7ef3ff /nixos/modules/installer
parent4cf0b6ba5d5ab5eb20a88449e0612f4dad8e4c29 (diff)
parent3855b7977c3f987d6c09bc809e33073d64956f72 (diff)
downloadnixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.tar
nixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.tar.gz
nixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.tar.bz2
nixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.tar.lz
nixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.tar.xz
nixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.tar.zst
nixlib-e13d0c3435a60e6873cb639291f1ed52de59da73.zip
Merge pull request #30172 from mayflower/cleanup/firmware-modules
nixos: clean up wifi firmware & default kernel modules
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/scan/detected.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/modules/installer/scan/detected.nix b/nixos/modules/installer/scan/detected.nix
index e72c78532943..7e181acb93b1 100644
--- a/nixos/modules/installer/scan/detected.nix
+++ b/nixos/modules/installer/scan/detected.nix
@@ -6,8 +6,7 @@ with lib;
 
 {
   config = mkDefault {
-    # Wireless card firmware
-    networking.enableIntel2200BGFirmware = true;
-    networking.enableIntel3945ABGFirmware = true;
+    # Common firmware, i.e. for wifi cards
+    hardware.enableRedistributableFirmware = true;
   };
 }