Merge pull request #44061 from ljani/avahi-extraconfig

nixos/avahi: add support for extraConfig
This commit is contained in:
Silvan Mosberger
2018-07-29 20:07:11 +02:00
committed by GitHub

View File

@@ -37,6 +37,7 @@ let
[reflector]
enable-reflector=${yesNo reflector}
${extraConfig}
'';
in
@@ -176,6 +177,14 @@ in
'';
};
extraConfig = mkOption {
default = "";
type = types.lines;
description = ''
Extra config to append to avahi-daemon.conf.
'';
};
};
};