summary refs log tree commit diff
path: root/nixos/modules/hardware
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
parent2f6cd0ce335b71ba0adf6e3988f7ce3d01396908 (diff)
downloadnixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.tar
nixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.tar.gz
nixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.tar.bz2
nixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.tar.lz
nixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.tar.xz
nixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.tar.zst
nixlib-4c415e59a427ab18336da21bc6a2b762e3b3ee4e.zip
rtl8723bs-firmware: init, split off from rtl8723bs
Diffstat (limited to 'nixos/modules/hardware')
-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 d0d481f72a40..fb8e1ccab667 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
+    ];
   };
 
 }