Created
May 30, 2024 09:28
-
-
Save Lillecarl/275cbc63710e6da93dbfb33640e4d04f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mdadm = { | |
root = { | |
type = "mdadm"; | |
level = 1; | |
content = { | |
type = "gpt"; | |
partitions = { | |
primary = { | |
start = "1MiB"; | |
end = "100%"; | |
content = { | |
type = "luks"; | |
name = "crypted"; | |
content = { | |
type = "lvm_pv"; | |
vg = "pool"; | |
}; | |
}; | |
}; | |
}; | |
}; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment