diff --git a/nixos/modules/services/web-servers/darkhttpd.nix b/nixos/modules/services/web-servers/darkhttpd.nix index ab647b11de5d1..6f4046aa74593 100644 --- a/nixos/modules/services/web-servers/darkhttpd.nix +++ b/nixos/modules/services/web-servers/darkhttpd.nix @@ -27,11 +27,11 @@ in { }; address = mkOption { - default = "127.0.0.1"; + default = "::1"; type = str; description = '' Address to listen on. - Pass `all` to listen on all interfaces. + Pass `::` to listen on all interfaces. ''; };