nixos: fix avahi connectivity for shairport-sync module

The shairport-sync service currently fails to start with the error

shairport avahi_entry_group_new failed

This problem seems to have been introduced by

cdd7310a503481e3c40266be45b6b8256d95ecbd

After some trial and error I concluded that the attached commit is a minimal
fix.

authored by

Anders Lundstedt and committed by
Bjørn Forsman
5f3c4bd1 b16d8b2a

+2
+2
nixos/modules/services/networking/shairport-sync.nix
··· 52 52 config = mkIf config.services.shairport-sync.enable { 53 53 54 54 services.avahi.enable = true; 55 + services.avahi.publish.enable = true; 56 + services.avahi.publish.userServices = true; 55 57 56 58 users.extraUsers = singleton 57 59 { name = cfg.user;