dotfiles/lib.nix

7 lines
102 B
Nix

{ lib, ... }:
{
quoteListenAddr = addr:
if lib.hasInfix ":" addr then "[${addr}]" else addr;
}