Merge pull request #75242 from mkg20001/cjdns-fix
services.cjdns: add missing, optional login & peerName attribute
This commit is contained in:
commit
7458dcd956
@ -12,8 +12,18 @@ let
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{ options =
|
{ options =
|
||||||
{ password = mkOption {
|
{ password = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
description = "Authorized password to the opposite end of the tunnel.";
|
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 {
|
publicKey = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user