147: fix mdadm raid device numbering style r=Mic92 a=Tomaszal



Co-authored-by: Tomas Zaluckij <mrtomaszal@gmail.com>
This commit is contained in:
bors[bot] 2023-02-09 09:11:10 +00:00 committed by GitHub
commit 9b78d9668e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,8 +55,10 @@ rec {
dev + toString index # /dev/{s,v}da style
else if match "/dev/(disk|zvol)/.+" dev != null then
"${dev}-part${toString index}" # /dev/disk/by-id/xxx style, also used by zfs's zvolumes
else if match "/dev/(nvme|md/|mmcblk).+" dev != null then
else if match "/dev/((nvme|mmcblk).+|md/.*[[:digit:]])" dev != null then
"${dev}p${toString index}" # /dev/nvme0n1p1 style
else if match "/dev/md/.+" dev != null then
"${dev}${toString index}" # /dev/md/raid1 style
else
abort ''
${dev} seems not to be a supported disk format. Please add this to disko in https://github.com/nix-community/disko/blob/master/types/default.nix