blob: 1412b1f0e659d1682fe560079a25e6e2617d18f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{ config
, pkgs
, lib
, ...
}: {
services.avahi = {
enable = true;
nssmdns = true;
ipv6 = true;
publish = {
enable = true;
addresses = true;
domain = true;
userServices = true;
workstation = true;
};
};
systemd.services.avahi-daemon.wantedBy = lib.mkForce [ ];
systemd.timers.avahi-daemon = {
description = "Delayed startup of Avahi";
wantedBy = [ "timers.target" ];
timerConfig = {
OnActiveSec = "1 min";
};
};
}
|