feat(fs): add zfs replication custom ssh port
This commit is contained in:
parent
27822059ab
commit
ce8f61acb5
|
@ -50,6 +50,11 @@ in {
|
|||
type = with types; str;
|
||||
description = "remote host as replication destination";
|
||||
};
|
||||
port = mkOption {
|
||||
type = with types; port;
|
||||
description = "ssh port of replication target";
|
||||
default = 22;
|
||||
};
|
||||
datasets = mkOption {
|
||||
type = with types; listOf str;
|
||||
default = [ "persist" "service" "storage" ];
|
||||
|
|
|
@ -11,6 +11,7 @@ in mkIf cfg.enable {
|
|||
commonArgs = [
|
||||
"--recursive"
|
||||
"--mbuffer-size=128M"
|
||||
"--sshport=${toString cfg.port}"
|
||||
];
|
||||
localSourceAllow = mkOptionDefault [ "mount" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue