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