Open
Description
Context
I am looking to implement a layout composed of two NVMe devices, similar to the following example:
In contrast to that example, I would like to use BTRFS' native support for multi-device volumes instead of using mdadm:
mkfs.btrfs --force \
--label nixos \
--data single \
--metadata raid1 \
"${NVME01}p3" \
"${NVME02}p3"
Problem
I would expect to be able to configure subvolumes for a multi-device BTRFS volume at disko.devices.btrfs
(or some more-fitting name) in the same way that other volume-like domains e.g. mdadm
, zpool
do:
Lines 306 to 334 in 5d9f362
While similar to #99, this problem pertains more to first-class BTRFS support with a top-level option. Such an option was suggested in #99 (comment) but the issue was closed shortly thereafter.
Question
Is it currently possible to configure multi-device BTRFS subvolumes using Disko?