From 7f706bb8de15e7e06e846854737ccbfebb12bac5 Mon Sep 17 00:00:00 2001 From: James Atkins Date: Sat, 5 Apr 2025 10:13:47 -0500 Subject: [PATCH] nixos/tinyproxy: allow listening on all interfaces When the Listen option is not present, tinyproxy will bind to all interfaces. --- nixos/modules/services/networking/tinyproxy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/tinyproxy.nix b/nixos/modules/services/networking/tinyproxy.nix index 5712f7949ef0..98bb0ad9587b 100644 --- a/nixos/modules/services/networking/tinyproxy.nix +++ b/nixos/modules/services/networking/tinyproxy.nix @@ -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.