feat(fs): add zfs replication custom ssh port

This commit is contained in:
514fpv 2024-03-03 15:04:33 +08:00
parent 27822059ab
commit ce8f61acb5
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 6 additions and 0 deletions

View file

@ -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" ];

View file

@ -11,6 +11,7 @@ in mkIf cfg.enable {
commonArgs = [
"--recursive"
"--mbuffer-size=128M"
"--sshport=${toString cfg.port}"
];
localSourceAllow = mkOptionDefault [ "mount" ];