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.

Changed files
+2
nixos
modules
services
networking
+2
nixos/modules/services/networking/shairport-sync.nix
···
config = mkIf config.services.shairport-sync.enable {
services.avahi.enable = true;
+
services.avahi.publish.enable = true;
+
services.avahi.publish.userServices = true;
users.extraUsers = singleton
{ name = cfg.user;