all repos — nixfiles @ 0a50d682ec85bf023bebd68a3ca388001f0c0677

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

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, lib, ... }:

{ services.avahi = {
    enable = true;
    nssmdns = true;
    ipv6 = true;
  };
  systemd.services.avahi-daemon.wantedBy = lib.mkForce [];
  systemd.timers.avahi-daemon = {
    description = "Delayed startup of Avahi";
    wantedBy = [ "timers.target" ];
    timerConfig = {
      OnActiveSec = "1 min";
    };
  };
}