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

2 files changed, 9 insertions(+), 8 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"; + }; + }; }
M system/settings/dev.nixsystem/settings/dev.nix
@@ -124,13 +124,5 @@ };
}; }; - services.dnsmasq = mkIf pkgs.stdenv.isDarwin { - enable = true; - bind = "::1"; - addresses = { - localhost = "::1"; - test = "::1"; - }; - }; }; }