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
+2 -5
View File
@@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ pkgs, ... }:
{
config = {
@@ -6,10 +6,7 @@
system.fsPackages = [ pkgs.e2fsprogs ];
# As of kernel 4.3, there is no separate ext3 driver (they're also handled by ext4.ko)
# No ext* modules are present on our aarch64, apparently (and maybe elsewhere).
boot.initrd.availableKernelModules =
lib.optionals (!pkgs.stdenv.hostPlatform.isAarch64)
[ "ext2" "ext4" ];
boot.initrd.availableKernelModules = [ "ext2" "ext4" ];
boot.initrd.extraUtilsCommands =
''