nixos/tinyproxy: allow listening on all interfaces

When the Listen option is not present, tinyproxy will bind to all
interfaces.
This commit is contained in:
James Atkins
2025-04-05 10:13:47 -05:00
parent 6fad1bd8a7
commit 7f706bb8de
@@ -63,7 +63,7 @@ in
freeformType = settingsFormat.type;
options = {
Listen = mkOption {
type = types.str;
type = types.nullOr types.str;
default = "127.0.0.1";
description = ''
Specify which address to listen to.