summary refs log tree commit diff stats
path: root/system/settings/services/zeroconf.nix
blob: ec917391111703daaf2592d29e021dfc78ec6b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config
, pkgs
, lib
, ...
}: {
  services.avahi = {
    enable = true;
    nssmdns4 = true;
    ipv6 = true;
    publish = {
      enable = true;
      addresses = true;
      domain = true;
      userServices = true;
      workstation = true;
    };
  };
}