services.cjdns: add missing, optional login & peerName attribute

This commit is contained in:
Maciej Krüger 2019-12-08 12:51:56 +01:00
parent c4a2f86ebe
commit 7409f9bab3
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F

View File

@ -15,6 +15,16 @@ let
type = types.str;
description = "Authorized password to the opposite end of the tunnel.";
};
login = mkOption {
default = "";
type = types.str;
description = "(optional) name your peer has for you";
};
peerName = mkOption {
default = "";
type = types.str;
description = "(optional) human-readable name for peer";
};
publicKey = mkOption {
type = types.str;
description = "Public key at the opposite end of the tunnel.";