reformat all nix code
1 file changed, 8 insertions(+), 6 deletions(-)
changed files
M system/settings/dev.nix → system/settings/dev.nix
@@ -1,7 +1,8 @@ -{ config -, lib -, pkgs -, ... +{ + config, + lib, + pkgs, + ... }: with lib;@@ -125,9 +126,10 @@ }; services.dnsmasq = mkIf pkgs.stdenv.isDarwin { enable = true; + bind = "::1"; addresses = { - localhost = "127.0.0.1"; - test = "127.0.0.1"; + localhost = "::1"; + test = "::1"; }; }; };