avahi service: add reflector option

This commit is contained in:
Franz Pletz 2017-04-18 15:10:24 +02:00
parent afcf15bc80
commit e74ea4282a
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -33,6 +33,9 @@ let
publish-hinfo=${yesNo publish.hinfo}
publish-workstation=${yesNo publish.workstation}
publish-domain=${yesNo publish.domain}
[reflector]
enable-reflector=${yesNo reflector}
'';
in
@ -113,6 +116,11 @@ in
description = ''Whether to enable wide-area service discovery.'';
};
reflector = mkOption {
default = false;
description = ''Reflect incoming mDNS requests to all allowed network interfaces.'';
};
publish = {
enable = mkOption {
default = false;