From 556b71d6c082374ad929720e52a2f8427aa42207 Mon Sep 17 00:00:00 2001 From: PopeRigby Date: Tue, 3 Jun 2025 13:26:09 -0700 Subject: [PATCH] Modify docker.nix to use mapAttrsToList instead of mapAttrsFlatten The latter alias is deprecated in favor of the former, and produces a warning. (cherry picked from commit cfc15d6921fbbea98df0ea1b5ddf139221da4ef7) --- docker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.nix b/docker.nix index d52c317d6..9e6806533 100644 --- a/docker.nix +++ b/docker.nix @@ -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;