1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-30 06:01:00 +01:00

Merge pull request #13618 from NixOS/mergify/bp/2.29-maintenance/pr-13321

Modify docker.nix to use mapAttrsToList instead of mapAttrsFlatten (backport #13321)
This commit is contained in:
mergify[bot] 2025-07-31 01:52:59 +00:00 committed by GitHub
commit b5efc9ac56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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