From b7b90d04551c5dd2fd99b924bc0bde860a4cb72f Mon Sep 17 00:00:00 2001 From: nikstur Date: Fri, 23 Feb 2024 00:21:01 +0100 Subject: [PATCH] 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. --- nixos/modules/virtualisation/qemu-vm.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 215e5f2b9cf5..0c63b640c389 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -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 }; } ];