From 56ee62e8e034205e929caf608592261685107f4e Mon Sep 17 00:00:00 2001 From: Vika Date: Sat, 22 Jul 2023 12:35:04 +0300 Subject: configuration.nix: bind on IPv6 localhost by default This is so the Kittybox socket can actually listen on both IPv4 and IPv6. --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index bdd353a..e51cefd 100644 --- a/configuration.nix +++ b/configuration.nix @@ -22,7 +22,7 @@ in { bind = mkOption { type = types.nullOr types.str; - default = "127.0.0.1"; + default = "[::1]"; description = "The host for Kittybox to bind to."; example = "192.168.1.100"; }; -- cgit 1.4.1