Skyler Grey | b10f64b | 2023-05-01 21:34:48 +0000 | [diff] [blame^] | 1 | { config, ... }: { |
2 | services = { | ||||
3 | nscd.enableNsncd = true; | ||||
4 | dnsmasq = { | ||||
5 | enable = true; | ||||
6 | servers = [ "1.1.1.1" "1.0.0.1" ]; | ||||
7 | extraConfig = '' | ||||
8 | local=/local/ | ||||
9 | domain=local | ||||
10 | expand-hosts | ||||
11 | ''; | ||||
12 | }; | ||||
13 | avahi = { | ||||
14 | enable = true; | ||||
15 | nssmdns = true; | ||||
16 | ipv4 = true; | ||||
17 | ipv6 = true; | ||||
18 | publish = { | ||||
19 | enable = true; | ||||
20 | addresses = true; | ||||
21 | workstation = true; | ||||
22 | }; | ||||
23 | }; | ||||
24 | }; | ||||
25 | } |