Allow specifying the path to mount remote file systems to
This commit is contained in:
parent
5022fd8103
commit
824bcbfbe5
|
@ -84,6 +84,11 @@ let
|
||||||
mkSyncType = provider: lib.types.submodule (
|
mkSyncType = provider: lib.types.submodule (
|
||||||
{ config, name, ... }: {
|
{ config, name, ... }: {
|
||||||
options = {
|
options = {
|
||||||
|
path = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "The path to mount the remote file system to.";
|
||||||
|
};
|
||||||
|
|
||||||
autoStart = lib.mkOption {
|
autoStart = lib.mkOption {
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
description = "Whether to start this sync automatically.";
|
description = "Whether to start this sync automatically.";
|
||||||
|
|
Loading…
Reference in a new issue