about summary refs log tree commit diff
path: root/nixos/modules/hardware/network
diff options
context:
space:
mode:
authorlukasepple <git@lukasepple.de>2016-02-14 16:34:30 +0100
committerlukasepple <git@lukasepple.de>2016-02-15 19:53:07 +0100
commit0b72e7e2472e381b0168345f2158dfe76afc2ab0 (patch)
tree55931881e3edd7ce2a9c539a974e6b7c3f9416af /nixos/modules/hardware/network
parent400ade95ff735b5d9a58617edc85db2d7a1ddb1f (diff)
downloadnixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar
nixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.gz
nixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.bz2
nixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.lz
nixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.xz
nixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.zst
nixlib-0b72e7e2472e381b0168345f2158dfe76afc2ab0.zip
intel2200BGFirmware: init at 3.1
This commit adds the firmware for the Intel 2200BG wireless cards for
the ipw2200 kernel module. Also it changes the
networking.enableIntel2200BGFirmware option to set it as
hardware.firmware since firmware-linux-nonfree does not contain the
appropiate firmware anymore. Also hardware.enableAllFirmware does enable
the intel2200BGFirmware now.
Diffstat (limited to 'nixos/modules/hardware/network')
-rw-r--r--nixos/modules/hardware/network/intel-2200bg.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/network/intel-2200bg.nix b/nixos/modules/hardware/network/intel-2200bg.nix
index 1b70057d135b..17b973474c93 100644
--- a/nixos/modules/hardware/network/intel-2200bg.nix
+++ b/nixos/modules/hardware/network/intel-2200bg.nix
@@ -23,7 +23,7 @@
 
   config = lib.mkIf config.networking.enableIntel2200BGFirmware {
 
-    hardware.enableAllFirmware = true;
+    hardware.firmware = [ pkgs.intel2200BGFirmware ];
 
   };