Unverified Commit 1c3eaed6 authored by Naïm Camille Favier's avatar Naïm Camille Favier
Browse files

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.
parent c141c823
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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"