1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

Merge pull request #13321 from poperigby/docker-map-attrs-flatten-replacement

Modify docker.nix to use mapAttrsToList instead of mapAttrsFlatten
This commit is contained in:
Jörg Thalheim 2025-06-04 06:49:28 +02:00 committed by GitHub
commit 4751cbef63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;