lnd: make listen IP address only
This commit is contained in:
parent
716e98789c
commit
3ed564ea06
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ in {
|
|||
description = "The data directory for LND.";
|
||||
};
|
||||
listen = mkOption {
|
||||
type = types.str;
|
||||
type = types.addCheck types.str (s: builtins.length (builtins.split ":" s) == 1);
|
||||
default = "localhost";
|
||||
description = "Bind to given address to listen to peer connections";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue