1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

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.
This commit is contained in:
nikstur 2024-02-23 00:21:01 +01:00
parent 0e5f929851
commit b7b90d0455

View file

@ -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
};
}
];