1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 00:49:27 +03:00

Merge master into staging-next

This commit is contained in:
github-actions[bot] 2024-03-18 00:02:20 +00:00 committed by GitHub
commit ac91cf83c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
75 changed files with 2012 additions and 1447 deletions

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