From cfc15d6921fbbea98df0ea1b5ddf139221da4ef7 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. --- docker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.nix b/docker.nix index a92d478d9..c418a9e62 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;