disko/lib/types/filesystem.nu
2024-10-27 20:44:53 +01:00

10 lines
No EOL
284 B
Text

export def generate-config [partition: record] {
assert ($partition.type == 'part') $'BUG! filesystem generate-config called with non-partition: ($partition)'
{
type: 'filesystem',
format: $partition.fstype,
mountpoint: $partition.mountpoint,
}
}