services.beesd: fix

This commit is contained in:
陈浩南 2024-03-22 09:58:42 +08:00
parent 1a5b81a317
commit 73c8197355

View File

@ -36,7 +36,12 @@ inputs:
{ {
spec = instance.value.device or instance.value; spec = instance.value.device or instance.value;
hashTableSizeMB = instance.value.hashTableSizeMB or 1024; hashTableSizeMB = instance.value.hashTableSizeMB or 1024;
extraOptions = [ "--thread-count" "${toString instance.value.threads or 1}" "--scan-mode" "3" ]; extraOptions =
[
"--workaround-btrfs-send"
"--thread-count" "${toString instance.value.threads or 1}"
"--scan-mode" "3"
];
}; };
}) })
(attrsToList beesd.instances)); (attrsToList beesd.instances));