summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-10-07 01:39:25 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-10-07 01:48:02 +0200
commit3df126dbf742f984b226f974ecfa649c70eb634e (patch)
tree1c3fc7ca133dbb1a9a47845254606e5ee829f4b5 /nixos/modules/installer
parentb02b224027320d6e33483647538af9f4bd96dea5 (diff)
downloadnixlib-3df126dbf742f984b226f974ecfa649c70eb634e.tar
nixlib-3df126dbf742f984b226f974ecfa649c70eb634e.tar.gz
nixlib-3df126dbf742f984b226f974ecfa649c70eb634e.tar.bz2
nixlib-3df126dbf742f984b226f974ecfa649c70eb634e.tar.lz
nixlib-3df126dbf742f984b226f974ecfa649c70eb634e.tar.xz
nixlib-3df126dbf742f984b226f974ecfa649c70eb634e.tar.zst
nixlib-3df126dbf742f984b226f974ecfa649c70eb634e.zip
nixos/modules: clean up wireless firmware options
All available options were just enabling
hardware.enableRedistributableFirmware. There were nix files without
modules which weren't referenced anywhere.
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;
   };
 }