17 lines
239 B
Nix
17 lines
239 B
Nix
{ pkgs, ... }: {
|
|
services.avahi = {
|
|
enable = true;
|
|
reflector = true;
|
|
allowInterfaces = [
|
|
"multimedia"
|
|
"server"
|
|
"lan"
|
|
"smart"
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nssmdns
|
|
];
|
|
}
|