nixos/tinyproxy: add quotes around the filter path

Using already existing function
This commit is contained in:
Thomas
2024-02-15 16:25:04 +01:00
parent aaca7a186f
commit 149fb601dd
@@ -7,6 +7,7 @@ let
mkValueStringTinyproxy = with lib; v:
if true == v then "yes"
else if false == v then "no"
else if types.path.check v then ''"${v}"''
else generators.mkValueStringDefault {} v;
mkKeyValueTinyproxy = {
mkValueString ? mkValueStringDefault {}