about summary refs log tree commit diff
path: root/nixos/modules/hardware/all-firmware.nix
diff options
context:
space:
mode:
authorEric Litak <elitak@gmail.com>2016-04-22 07:54:11 -0700
committerEric Litak <elitak@gmail.com>2016-04-25 00:41:25 -0700
commit4c415e59a427ab18336da21bc6a2b762e3b3ee4e (patch)
treefd6186c44656eb0f0fac25744d6db0165eb0ed2d /nixos/modules/hardware/all-firmware.nix
parent2f6cd0ce335b71ba0adf6e3988f7ce3d01396908 (diff)
rtl8723bs-firmware: init, split off from rtl8723bs
Diffstat (limited to 'nixos/modules/hardware/all-firmware.nix')
-rw-r--r--nixos/modules/hardware/all-firmware.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/hardware/all-firmware.nix b/nixos/modules/hardware/all-firmware.nix
index d0d481f72a40e..fb8e1ccab6672 100644
--- a/nixos/modules/hardware/all-firmware.nix
+++ b/nixos/modules/hardware/all-firmware.nix
@@ -22,7 +22,11 @@ with lib;
   ###### implementation
 
   config = mkIf config.hardware.enableAllFirmware {
-    hardware.firmware = [ pkgs.firmwareLinuxNonfree pkgs.intel2200BGFirmware ];
+    hardware.firmware = with pkgs; [
+      firmwareLinuxNonfree
+      intel2200BGFirmware
+      rtl8723bs-firmware
+    ];
   };
 
 }