all repos — nixfiles @ 7f73174893bc51d3c701f4a4cda515492641d270

System and user configuration, managed by nix and home-manager

system/settings/services/zeroconf.nix (view raw)

{
  config,
  pkgs,
  lib,
  ...
}:
{
  services.avahi = {
    enable = true;
    nssmdns4 = true;
    ipv6 = true;
    publish = {
      enable = true;
      addresses = true;
      domain = true;
      userServices = true;
      workstation = true;
    };
  };
}