summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-05-21 16:14:15 -0500
committerGitHub <noreply@github.com>2019-05-21 16:14:15 -0500
commit6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736 (patch)
tree19bf264ef4b4318b49e3766b4c39985cc89942f4 /nixos/modules
parentca27701049dd91107a4701c9ac9d7158979320ab (diff)
parent4806c8c38dcd2f7b83a75c684ad798ef184da942 (diff)
downloadnixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.tar
nixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.tar.gz
nixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.tar.bz2
nixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.tar.lz
nixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.tar.xz
nixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.tar.zst
nixpkgs-6d036d5b264d3ebcb5ef48e41f12ecaa9f5b3736.zip
Merge pull request #61037 from bkchr/facetimehd_aarch64_fix
nixos/all-firmware: Enable facetimehd only for i686/x86_64
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/hardware/all-firmware.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/modules/hardware/all-firmware.nix b/nixos/modules/hardware/all-firmware.nix
index c79be810eef..534fcc34276 100644
--- a/nixos/modules/hardware/all-firmware.nix
+++ b/nixos/modules/hardware/all-firmware.nix
@@ -63,8 +63,7 @@ in {
         b43Firmware_5_1_138
         b43Firmware_6_30_163_46
         b43FirmwareCutter
-        facetimehd-firmware
-      ];
+      ] ++ optional (pkgs.stdenv.hostPlatform.isi686 || pkgs.stdenv.hostPlatform.isx86_64) facetimehd-firmware;
     })
   ];
 }