Commit 7f706bb8 authored by James Atkins's avatar James Atkins
Browse files

nixos/tinyproxy: allow listening on all interfaces

When the Listen option is not present, tinyproxy will bind to all
interfaces.
parent 6fad1bd8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.