From c2a901798e85c2f5108df679fba9b9f7702fac96 Mon Sep 17 00:00:00 2001 From: Terra Brown Date: Thu, 21 Jan 2021 23:08:54 -0500 Subject: [PATCH] nixos/modules: add "sdhci_pci" to availableKernelModules Encountered issues booting the live image on an Acer R11 Chromebook (CYAN). Got help from @samueldr on Freenode, and adding this module fixed it. Likely useful for other platforms/situations where booting from SD is necessary. --- nixos/modules/profiles/all-hardware.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/profiles/all-hardware.nix b/nixos/modules/profiles/all-hardware.nix index d460c52dbefd..e22c56b53c37 100644 --- a/nixos/modules/profiles/all-hardware.nix +++ b/nixos/modules/profiles/all-hardware.nix @@ -37,6 +37,9 @@ in # drives. "uas" + # SD cards. + "sdhci_pci" + # Firewire support. Not tested. "ohci1394" "sbp2"