nixos ISO image: revert another part of 8ca33835ba

This commit is contained in:
Vladimír Čunát
2021-01-13 15:25:19 +01:00
parent a76f0696cc
commit 9e2880e5fa
3 changed files with 14 additions and 28 deletions
+7 -13
View File
@@ -194,37 +194,31 @@ in
config = mkMerge
[ (mkIf config.boot.initrd.enable {
boot.initrd.availableKernelModules = let
# Some modules apparently aren't present on our aarch64 (and maybe elsewhere).
maybeInitrdModules = lib.optionals (!pkgs.stdenv.hostPlatform.isAarch64);
in
# Note: most of these (especially the SATA/PATA modules)
boot.initrd.availableKernelModules =
[ # Note: most of these (especially the SATA/PATA modules)
# shouldn't be included by default since nixos-generate-config
# detects them, but I'm keeping them for now for backwards
# compatibility.
# Some SATA/PATA stuff.
maybeInitrdModules [ "ahci" ]
++ [
"ahci"
"sata_nv"
"sata_via"
"sata_sis"
"sata_uli"
"ata_piix"
"pata_marvell"
]
# Standard SCSI stuff.
++ maybeInitrdModules [ "sd_mod" ]
++ [ "sr_mod" ]
"sd_mod"
"sr_mod"
# SD cards and internal eMMC drives.
++ maybeInitrdModules [ "mmc_block" ]
"mmc_block"
# Support USB keyboards, in case the boot fails and we only have
# a USB keyboard, or for LUKS passphrase prompt.
++ [ "uhci_hcd" ]
++ maybeInitrdModules [
"uhci_hcd"
"ehci_hcd"
"ehci_pci"
"ohci_hcd"