diff options
author | Vika <vika@fireburn.ru> | 2023-07-22 12:35:04 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2023-07-22 12:35:04 +0300 |
commit | 56ee62e8e034205e929caf608592261685107f4e (patch) | |
tree | 55c2721894978efbbdbb334d28303bf0d9c9f395 | |
parent | b9e66068484ea4111cd4adf63abc1afdac056b22 (diff) | |
download | kittybox-56ee62e8e034205e929caf608592261685107f4e.tar.zst |
configuration.nix: bind on IPv6 localhost by default
This is so the Kittybox socket can actually listen on both IPv4 and IPv6.
-rw-r--r-- | configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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"; }; |