2021-05-18 22:10:35 +02:00
|
|
|
import options
|
|
|
|
|
|
|
|
type Link* = object
|
|
|
|
src*: string
|
|
|
|
dst*: string
|
|
|
|
|
|
|
|
type Config* = object
|
2021-06-16 19:48:13 +02:00
|
|
|
extends*: Option[seq[string]]
|
|
|
|
mount*: Option[seq[string]]
|
|
|
|
romount*: Option[seq[string]]
|
|
|
|
symlinks*: Option[seq[Link]]
|