summary refs log tree commit diff
path: root/nixos/modules/hardware/network/intel-2200bg.nix
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/intel-2200bg.nix
parent400ade95ff735b5d9a58617edc85db2d7a1ddb1f (diff)
downloadnixpkgs-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar
nixpkgs-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.gz
nixpkgs-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.bz2
nixpkgs-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.lz
nixpkgs-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.xz
nixpkgs-0b72e7e2472e381b0168345f2158dfe76afc2ab0.tar.zst
nixpkgs-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/intel-2200bg.nix')
-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 1b70057d135..17b973474c9 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 ];
 
   };