all repos — nixfiles @ 3f4dcb16b914073fef23452a301050fbbf458dfe

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

only run dnsmasq for dev on darwin

Alan Pearce
commit

3f4dcb16b914073fef23452a301050fbbf458dfe

parent

821e5698fb6a52cf347cd102b32dc5076591ab4a

1 file changed, 9 insertions(+), 0 deletions(-)

changed files
M system/settings/darwin.nixsystem/settings/darwin.nix
@@ -66,4 +66,13 @@ watch
coreutils-prefixed iproute2mac ]; + + services.dnsmasq = { + enable = true; + bind = "::1"; + addresses = { + localhost = "::1"; + test = "::1"; + }; + }; }