Merge pull request #13617 from NixOS/mergify/bp/2.28-maintenance/pr-13321

Modify docker.nix to use mapAttrsToList instead of mapAttrsFlatten (backport #13321)
This commit is contained in:
mergify[bot]
2025-07-31 03:09:45 +00:00
committed by GitHub

View File

@@ -155,7 +155,7 @@ let
nixConfContents =
(lib.concatStringsSep "\n" (
lib.mapAttrsFlatten (
lib.mapAttrsToList (
n: v:
let
vStr = if builtins.isList v then lib.concatStringsSep " " v else v;