fix: fixed file system resolution
This commit is contained in:
parent
5dc602339c
commit
2922114367
5 changed files with 36 additions and 74 deletions
|
|
@ -83,7 +83,7 @@ args @ {
|
|||
lib.attrsets.nameValuePair name {
|
||||
type = dataset.type;
|
||||
options = datasetToZfsOptions dataset;
|
||||
mountpoint = dataset.mount.mountPoint or null;
|
||||
mountpoint = dataset.mount or null;
|
||||
postCreateHook = generatePostCreateHook name dataset;
|
||||
}
|
||||
)
|
||||
|
|
@ -92,7 +92,7 @@ args @ {
|
|||
lib.attrsets.nameValuePair "" {
|
||||
type = config.storage.zfs.rootDataset.type;
|
||||
options = datasetToZfsOptions config.storage.zfs.rootDataset;
|
||||
mountpoint = config.storage.zfs.rootDataset.mount.mountPoint or null;
|
||||
mountpoint = config.storage.zfs.rootDataset.mount or null;
|
||||
postCreateHook = generatePostCreateHook "" config.storage.zfs.rootDataset;
|
||||
}
|
||||
))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue