13 lines
199 B
Nix
13 lines
199 B
Nix
|
{
|
||
|
services.avahi = {
|
||
|
enable = true;
|
||
|
nssmdns4 = true;
|
||
|
openFirewall = true;
|
||
|
publish = {
|
||
|
enable = true;
|
||
|
userServices = true;
|
||
|
};
|
||
|
|
||
|
allowInterfaces = [ "br0" ];
|
||
|
};
|
||
|
}
|