Merge pull request #75242 from mkg20001/cjdns-fix

services.cjdns: add missing, optional login & peerName attribute
This commit is contained in:
Maciej Krüger 2021-05-18 18:22:29 +02:00 committed by GitHub
commit 7458dcd956
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,8 +12,18 @@ let
{ ... }:
{ options =
{ password = mkOption {
type = types.str;
description = "Authorized password to the opposite end of the tunnel.";
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;