Merge pull request #289025 from tcheronneau/issue-288907

nixos/tinyproxy: fix the quotes around the filter path
This commit is contained in:
Sandro 2024-03-17 23:33:42 +01:00 committed by GitHub
commit 1f212fd6e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 {}