7 lines
102 B
Nix
7 lines
102 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
quoteListenAddr = addr:
|
||
|
if lib.hasInfix ":" addr then "[${addr}]" else addr;
|
||
|
}
|