Commit b7b90d04 authored by nikstur's avatar nikstur
Browse files

nixos/qemu-vm: fsck ESP

The ESP is a writable vfat filesystem that can be fscked like any other
fs thus we should stick to the default.
parent 0e5f9298
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1242,7 +1242,6 @@ in
        "/boot" = lib.mkIf (cfg.useBootLoader && cfg.bootPartition != null) {
          device = cfg.bootPartition;
          fsType = "vfat";
          noCheck = true; # fsck fails on a r/o filesystem
        };
      }
    ];