fileSystems: disable acl for vfat

This commit is contained in:
陈浩南 2023-09-13 13:27:35 +08:00
parent 4eaa4f8df2
commit eccdd913ed

View File

@ -82,7 +82,7 @@ inputs:
(device:
{
name = device.value;
value = { device = device.name; fsType = "vfat"; options = [ "acl" ]; neededForBoot = true; };
value = { device = device.name; fsType = "vfat"; neededForBoot = true; };
})
(attrsToList fileSystems.mount.vfat));
}