nixos/profiles/base: add explicit support for ext filesystems

ext filesystems are only supported unconditionally if the systemd initrd
is NOT used. Since the systemd initrd was recently enabled by default,
the default ISO image configuration is now missing support for ext
filesystems, which means that one cannot e.g. boot into a live ISO image
and run `fsck.ext4`.

This commit adds ext2, ext3 and ext4 as explicitly supported file
systems in the base profile, which ensures that the associated tools are
always available.
This commit is contained in:
Naïm Camille Favier
2026-05-03 15:14:01 +02:00
parent c141c8231f
commit 1c3eaed6b1
+3
View File
@@ -53,6 +53,9 @@
# Include support for various filesystems and tools to create / manipulate them.
boot.supportedFilesystems = lib.mkMerge [
[
"ext2"
"ext3"
"ext4"
"btrfs"
"cifs"
"f2fs"